You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
686 B

  1. # see http://docs.ansible.com/intro_configuration.html
  2. [defaults]
  3. # Do not show skipped hosts
  4. display_skipped_hosts = False
  5. # Look for the inventory of hosts in the current directory
  6. inventory = ./hosts
  7. # Connect as 'root' by default via SSH
  8. remote_user = root
  9. # Do not use cowsay
  10. nocows = 1
  11. # Connect to up to 50 server in parallel
  12. forks = 50
  13. # Speed improvement, but may break sudo with requiretty
  14. pipelining = True
  15. # Log actions
  16. log_path = ./log
  17. # Path to roles
  18. roles_path = ansible/roles
  19. [ssh_connection]
  20. # Speed improvement, but may break sudo with requiretty
  21. pipelining = True
  22. [privilege_escalation]
  23. become=True
  24. become_method=sudo
  25. become_user=root
  26. become_ask_pass=False