pre-flight.yml 216 B

1234567891011
  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. - role: p0f.operators.fix-operators
  10. tags: fix
  11. ...