aboutsummaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
authorGravatar shtlrs <[email protected]>2024-08-19 23:23:40 +0100
committerGravatar shtlrs <[email protected]>2024-08-19 23:23:40 +0100
commit887c87cfafd1667944a18f6b66de48d46e056962 (patch)
tree0680d242964b5f4d8fb5c5a6a508c434c471286b /ansible
parentadd a task that enables LDAP auth for jitsi (diff)
fix ansible lint errors
Diffstat (limited to 'ansible')
-rw-r--r--ansible/roles/jitsi/tasks/ldap_auth.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/ansible/roles/jitsi/tasks/ldap_auth.yml b/ansible/roles/jitsi/tasks/ldap_auth.yml
index 528c422..8a06738 100644
--- a/ansible/roles/jitsi/tasks/ldap_auth.yml
+++ b/ansible/roles/jitsi/tasks/ldap_auth.yml
@@ -57,12 +57,14 @@
ansible.builtin.command:
# Neccessary because support for Cyrus SASL has been removed from mainline Prosody
cmd: prosodyctl install --server=https://modules.prosody.im/rocks/ mod_auth_cyrus
+ changed_when: true
tags:
- role::jitsi
- name: Create Cyrus SASL Configuration file
copy:
dest: /etc/sasl/prosody.conf
+ mode: "u=rw,g=r,o=r"
content: |
pwcheck_method: saslauthd
mech_list: PLAIN
@@ -74,7 +76,7 @@
ansible.builtin.user:
name: prosody
groups: sasl
- append: yes
+ append: true
notify:
- Restart the Jitsi video bridge service