ansible.cfg 795 B

1234567891011121314151617181920212223
  1. [defaults]
  2. inventory = $HOME/verchow.inventory
  3. remote_user = root
  4. vault_password_file = $HOME/.vaults/verchow
  5. retry_files_enabled = False
  6. host_key_checking = False
  7. # by default retrieve all facts subsets
  8. # all - gather all subsets
  9. # network - gather min and network facts
  10. # hardware - gather hardware facts (longest facts to retrieve)
  11. # virtual - gather min and virtual facts
  12. # facter - import facts from facter
  13. # ohai - import facts from ohai
  14. # You can combine them using comma (ex: network,virtual)
  15. # You can negate them using ! (ex: !hardware,!facter,!ohai)
  16. # A minimal set of facts is always gathered.
  17. gather_subset = !hardware
  18. # additional paths to search for roles or modules in, colon separated
  19. roles_path = $HOME/ansible/roles/
  20. library = $HOME/ansible/modules/