Update to 2024-07-22 23:00

This commit is contained in:
Daniel Berteaud
2024-07-22 23:00:11 +02:00
parent f5421b17f0
commit cd302033bd
112 changed files with 15413 additions and 340 deletions

View File

@@ -24,16 +24,6 @@
notify: restart prosody
tags: prosody
- name: Install additional modules
copy:
src: "{{ item }}"
dest: /opt/prosody/modules/
notify: restart prosody
loop:
- mod_participant_metadata.lua
- token
tags: prosody
- name: Remove useless unit override
file: path=/etc/systemd/system/prosody.service.d/99-ansible.conf state=absent
register: prosody_unit
@@ -45,9 +35,3 @@
when: prosody_unit.changed
tags: prosody
- name: Allow prosody to query LDAP servers
seboolean: name={{ item }} state=True persistent=True
loop:
- authlogin_nsswitch_use_ldap
when: ansible_selinux.status == 'enabled'
tags: prosody

View File

@@ -26,3 +26,10 @@
semodule -i /etc/selinux/targeted/local/prosody-ansible.pp
when: prosody_selinux_policy.changed
tags: prosody
- name: Allow prosody to query LDAP and HTTP servers
seboolean: name={{ item }} state=true persistent=true
loop:
- authlogin_nsswitch_use_ldap
- nis_enabled
tags: prosody