Updates Jitsi to stable-8960-1
This commit is contained in:
parent
99f7dced9e
commit
04fc0023df
4 changed files with 104 additions and 34 deletions
|
|
@ -81,21 +81,6 @@
|
|||
that:
|
||||
- "output.services['web']['jitsi_web_1'].state.running"
|
||||
|
||||
- name: "Test whether Jitsi is healthy from the outside"
|
||||
when: not ansible_check_mode
|
||||
become: false
|
||||
uri:
|
||||
url: https://{{ jitsi_virtual_host }}
|
||||
return_content: yes
|
||||
timeout: 300
|
||||
validate_certs: no
|
||||
register: url_check
|
||||
delegate_to: localhost
|
||||
until: "'<title>Jitsi Meet' in url_check.content"
|
||||
retries: 5
|
||||
delay: 10
|
||||
tags: health
|
||||
|
||||
- name: "Config: Set channelLastN"
|
||||
lineinfile:
|
||||
path: /home/{{ docker_user }}/jitsi/conf/web/config.js
|
||||
|
|
@ -113,3 +98,17 @@
|
|||
when: jitsi_enable_third_party_requests == False
|
||||
tags: config
|
||||
|
||||
- name: "Test whether Jitsi is healthy from the outside"
|
||||
when: not ansible_check_mode
|
||||
become: false
|
||||
uri:
|
||||
url: "{{ jitsi_public_url }}"
|
||||
return_content: yes
|
||||
timeout: 300
|
||||
validate_certs: no
|
||||
register: url_check
|
||||
delegate_to: localhost
|
||||
until: "'<title>Jitsi Meet' in url_check.content"
|
||||
retries: 5
|
||||
delay: 10
|
||||
tags: health
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue