This website works better with JavaScript.
Explore
Help
Sign In
titanz
/
matrix-docker-ansible-deploy
Watch
1
Star
0
Fork
You've already forked matrix-docker-ansible-deploy
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1c6ab4a1bc
housekeeping
development
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '1c6ab4a1bc'
${ noResults }
matrix-docker-ansible-deploy
/
roles
/
custom
/
matrix-base
/
tasks
/
ensure_openssl_installed.yml
7 lines
102 B
Raw
Normal View
History
Unescape
Escape
Include ensure_openssl_installed and ensure_fuse_installed utils in a more reliable way This fixes a regression since the change done in c1c152f7acb931021acb3. When another role (say `matrix-jitsi`) included `roles/custom/matrix-base/tasks/util/ensure_openssl_installed.yml`, which then included `{{ role_path }}/tasks/util/ensure_openssl_installed_DISTRO.yml`, that `role_path` variable would end up being the parent role (`matrix-jitsi`) and not the `matrix-base` role, so we'd get a failure. An alternative solution may have been to avoid using `role_path`, but importing roles properly (like we've done in this patch) sounds like a better way. Unfortunately, `import_role` fails if `tasks_from` is something like `util/ensure_openssl_installed` (containing a `/`), so I had to move these utils out of `util/`. Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2228
2 years ago
---
Install openssl using ansible.builtin.package, not using a distro-specific package manager module Related to https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/2228
2 years ago
-
name
:
Ensure openssl installed
ansible.builtin.package
:
name
:
openssl
state
:
present