fix-policies.yml 240 B

1234567891011
  1. ---
  2. - name: Fix the offending noisy policies with exclusion scopes
  3. hosts: workstation.lab.example.com
  4. gather_subset: min
  5. become: no
  6. roles:
  7. # - role: check-env
  8. # tags: check
  9. - role: fix-policies
  10. tags: configure
  11. ...