Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

31 rinda
592 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