diff --git a/tasks/main.yml b/tasks/main.yml index a629a61..b0afd5d 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -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: "'Jitsi Meet' not in url_check.content"