pre-flight.yml 160 B

123456789
  1. ---
  2. - name: Pre-flight checks only.
  3. hosts: workstation.lab.example.com
  4. gather_subset: min
  5. become: no
  6. roles:
  7. - role: check-env
  8. tags: check
  9. ...