Files
ansible-shared/chat/jitsi/tasks/install-debian.yml
2021-08-04 23:30:24 -06:00

28 lines
733 B
YAML

---
# Install gnupg2 required for apt_key
- name: Installing gnupg2
apt:
update_cache: yes
state: present
name:
- gnupg2
# 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
# Later, fix with https://community.jitsi.org/t/silent-installation/55519
# NO, because this has a manual interfention popup
# NO - name: Installing Jitsi Server
# NO apt:
# NO update_cache: yes
# NO state: present
# NO name:
# NO - jitsi-meet