pre-flight.yml 237 B

12345678910111213
  1. ---
  2. - name: Pre-flight checks only.
  3. hosts: workstation.lab.example.com
  4. gather_subset: min
  5. become: no
  6. collections:
  7. - p0f.operators
  8. roles:
  9. - role: check-env
  10. tags: check
  11. - role: fix-operators
  12. tags: fix
  13. ...