Tons of updates including erpnext, fusionauth, kong, elasticsearch, postgres-12, opennebula-5.10...
This commit is contained in:
17
chat/jitsi/tasks/intall-debian.yml
Normal file
17
chat/jitsi/tasks/intall-debian.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
# Add GPG keys
|
||||
- name: Addding jitsi GPG key
|
||||
apt_key: url='https://download.jitsi.org/jitsi-key.gpg.key' state=present
|
||||
|
||||
# Add jitsi repositories
|
||||
- name: Adding jitsi sources for Debian
|
||||
apt_repository: repo='deb https://download.jitsi.org stable/' state=present
|
||||
when: ansible_os_family == "Debian"
|
||||
|
||||
# Install Jitsi Server
|
||||
- name: Installing Jitsi Server
|
||||
apt:
|
||||
update_cache: yes
|
||||
state: present
|
||||
name:
|
||||
- jitsi-meet
|
||||
3
chat/jitsi/tasks/main.yml
Normal file
3
chat/jitsi/tasks/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
# Install Jitsi - Debian All Versions
|
||||
- include_tasks: install-debian.yml
|
||||
when: ansible_os_family == "Debian"
|
||||
Reference in New Issue
Block a user