mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-08-02 14:55:37 +02:00
Update to 2024-07-22 10:00
This commit is contained in:
@@ -1,18 +1,22 @@
|
||||
---
|
||||
|
||||
- name: Install prosody
|
||||
yum:
|
||||
package:
|
||||
name:
|
||||
- prosody
|
||||
- lua-ldap
|
||||
- lua-cyrussasl
|
||||
- lua-cjson
|
||||
- lua-basexx
|
||||
- lua-luaossl
|
||||
- libjwt
|
||||
tags: prosody
|
||||
|
||||
- name: Create systemd unit snippet dir
|
||||
file: path=/etc/systemd/system/prosody.service.d state=directory
|
||||
tags: prosody
|
||||
|
||||
- name: Install modules
|
||||
- name: Install remote modules
|
||||
get_url:
|
||||
url: "{{ item.url | default('https://raw.githubusercontent.com/prosody-modules/' ~ item.name ~ '/master/' ~ item.name ~ '.lua') }}"
|
||||
dest: /opt/prosody/modules/{{ item.name }}.lua
|
||||
@@ -20,11 +24,14 @@
|
||||
notify: restart prosody
|
||||
tags: prosody
|
||||
|
||||
- name: Install Participan Metadata module
|
||||
- name: Install additional modules
|
||||
copy:
|
||||
src: mod_participant_metadata.lua
|
||||
src: "{{ item }}"
|
||||
dest: /opt/prosody/modules/
|
||||
notify: restart prosody
|
||||
loop:
|
||||
- mod_participant_metadata.lua
|
||||
- token
|
||||
tags: prosody
|
||||
|
||||
- name: Remove useless unit override
|
||||
|
Reference in New Issue
Block a user