mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
15 lines
344 B
YAML
15 lines
344 B
YAML
---
|
|
# This is an example playbook to execute Ansible tests.
|
|
|
|
- name: Verify
|
|
hosts: all
|
|
gather_facts: false
|
|
tasks:
|
|
- name: check if webserver is up
|
|
uri:
|
|
url: http://localhost:8000
|
|
status_code: [200, 302]
|
|
return_content: yes
|
|
register: landingpage
|
|
failed_when: "'Sign in</button>' not in landingpage.content"
|