ansible.cfg 713 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. [defaults]
  2. # 主机清单文件路径
  3. inventory = ./script/ansible/inventory/hosts
  4. # 并发连接数
  5. forks = 5
  6. # 远程连接超时时间(秒)
  7. timeout = 30
  8. # 禁用 SSH key 检查
  9. host_key_checking = False
  10. # 指定远程用户
  11. remote_user = root
  12. # 日志路径
  13. log_path = ./script/ansible/ansible.log
  14. # 显示任务执行时间
  15. callback_whitelist = profile_tasks
  16. # 显示任务执行差异
  17. diff = True
  18. # roles 路径
  19. roles_path = ./script/ansible/roles
  20. [privilege_escalation]
  21. # 是否需要切换成其他用户
  22. become = True
  23. become_method = sudo
  24. become_user = root
  25. become_ask_pass = False
  26. [ssh_connection]
  27. # SSH 参数配置
  28. ssh_args = -o ControlMaster=auto -o ControlPersist=60s
  29. pipelining = True