31 lines
782 B
YAML
31 lines
782 B
YAML
---
|
|
- name: Ajout de la clé GPG pour le depot jitsi
|
|
apt_key:
|
|
url: http://download.jitsi.org/jitsi-key.gpg.key
|
|
|
|
- name: Ajout du depot jitsi
|
|
apt_repository:
|
|
repo: deb https://download.jitsi.org stable/
|
|
|
|
- name: apt update
|
|
apt:
|
|
update_cache: true
|
|
|
|
- name: Application du hostname avant installation
|
|
debconf:
|
|
name: jitsi-meet-web-config
|
|
question: jitsi-videobridge/jvb-hostname
|
|
value: '{{ inventory_hostname }}'
|
|
vtype: string
|
|
|
|
- name: On veut un certificat autogénéré
|
|
debconf:
|
|
name: jitsi-meet-web-config
|
|
question: jitsi-meet/cert-choice
|
|
value: "Generate a new self-signed certificate (You will later get a chance to obtain a Let's encrypt certificate)"
|
|
vtype: string
|
|
|
|
- name: installation de jitsi
|
|
apt:
|
|
name: jitsi-meet
|