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
|
||||
delegate_to: localhost
|
||||
|
||||
# - name: "Testing whether the Nextcloud homepage is available#"
|
||||
# action: uri url=http://{{ ansible_ssh_host }} return_content=yes
|
||||
# register: gl
|
||||
- name: "Testing whether the Jitsi homepage is available"
|
||||
action: uri url=https://{{ jitsi_virtual_host }} return_content=yes
|
||||
register: url_check
|
||||
|
||||
# - fail:
|
||||
# msg: 'Graylog homepage is not available!'
|
||||
# when: "'Graylog Web Interface' not in gl.content"
|
||||
- fail:
|
||||
msg: 'Jitsi homepage is not available!'
|
||||
when: "'<title>Jitsi Meet' not in url_check.content"
|
||||
|
|
Loading…
Add table
Reference in a new issue