| 123456789101112131415161718192021222324252627282930313233343536373839 | ---# Checks that every prereq is in place:## Services:#  - DHCP#  - TFTP#  - DNS#  - chronyd#  - haproxy#  - httpd## Tools:#  - openshift-install#  - butane#  - oc## Files:#  - ???- name: Check services are running  service:    name: "{{ item }}"    state: running  loop:    - dhcpd    - tftp.socket    - named    - chronyd    - haproxy    - httpd- name: Make sure all the tools are there  file:    path: /usr/local/bin/{{ item }}    state: file  loop:    - openshift-install    - butane    - oc...
 |