14 lines
350 B
YAML
14 lines
350 B
YAML
---
|
|
- name: Check if a service is installed
|
|
hosts: AD01
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Wait 300 seconds, but only start checking after 60 seconds
|
|
ansible.builtin.wait_for_connection:
|
|
delay: 10
|
|
timeout: 300
|
|
register: service_info
|
|
|
|
- name: Debug
|
|
ansible.builtin.debug:
|
|
var: service_info |