Upload Ansible Files

This commit is contained in:
2024-05-08 13:03:34 +02:00
parent 56902d524e
commit 9b520fbcfb
44 changed files with 1334 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
---
- 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