diff options
| -rw-r--r-- | ansible/roles/jitsi/tasks/ldap_auth.yml | 4 | 
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 | 
