Added URL check to confirm that the Jitsi homepage is available
This commit is contained in:
parent
57761d83d5
commit
9812972f4c
1 changed files with 6 additions and 6 deletions
|
@ -70,10 +70,10 @@
|
||||||
port: 443
|
port: 443
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
# - name: "Testing whether the Nextcloud homepage is available#"
|
- name: "Testing whether the Jitsi homepage is available"
|
||||||
# action: uri url=http://{{ ansible_ssh_host }} return_content=yes
|
action: uri url=https://{{ jitsi_virtual_host }} return_content=yes
|
||||||
# register: gl
|
register: url_check
|
||||||
|
|
||||||
# - fail:
|
- fail:
|
||||||
# msg: 'Graylog homepage is not available!'
|
msg: 'Jitsi homepage is not available!'
|
||||||
# when: "'Graylog Web Interface' not in gl.content"
|
when: "'<title>Jitsi Meet' not in url_check.content"
|
||||||
|
|
Loading…
Add table
Reference in a new issue