1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/monit/tasks/check_state.yml
Felix Fontein 24ca69aa05
CI: Remove 'warn:' that's removed in ansible-core 2.14 (#4434)
* Remove 'warn:' that's removed in ansible-core 2.14.

* Install virtualenv when needed.
2022-04-01 22:53:05 +02:00

16 lines
417 B
YAML

- name: "{{ reason }} ('up')"
command: "curl -sf http://localhost:8082/hello"
when: service_state == 'up'
register: curl_result
until: not curl_result.failed
retries: 5
delay: 1
- name: "{{ reason }} ('down')"
command: "curl -sf http://localhost:8082/hello"
register: curl_result
failed_when: curl_result == 0
when: service_state == 'down'
until: not curl_result.failed
retries: 5
delay: 1