Old ansible configuration for servers
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ansible.cfg 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. # config file for ansible -- http://ansible.com/
  2. # ==============================================
  3. # nearly all parameters can be overridden in ansible-playbook
  4. # or with command line flags. ansible will read ANSIBLE_CONFIG,
  5. # ansible.cfg in the current working directory, .ansible.cfg in
  6. # the home directory or /etc/ansible/ansible.cfg, whichever it
  7. # finds first
  8. [defaults]
  9. # some basic default values...
  10. hostfile = /etc/ansible/hosts
  11. library = /usr/share/ansible
  12. remote_tmp = $HOME/.ansible/tmp
  13. pattern = *
  14. forks = 5
  15. poll_interval = 15
  16. sudo_user = root
  17. #ask_sudo_pass = True
  18. #ask_pass = True
  19. transport = smart
  20. remote_port = 22
  21. # additional paths to search for roles in, colon seperated
  22. #roles_path = /etc/ansible/roles
  23. # uncomment this to disable SSH key host checking
  24. #host_key_checking = False
  25. # change this for alternative sudo implementations
  26. sudo_exe = sudo
  27. # what flags to pass to sudo
  28. #sudo_flags = -H
  29. # SSH timeout
  30. timeout = 10
  31. # default user to use for playbooks if user is not specified
  32. # (/usr/bin/ansible will use current user as default)
  33. #remote_user = root
  34. # logging is off by default unless this path is defined
  35. # if so defined, consider logrotate
  36. #log_path = /var/log/ansible.log
  37. # default module name for /usr/bin/ansible
  38. #module_name = command
  39. # use this shell for commands executed under sudo
  40. # you may need to change this to bin/bash in rare instances
  41. # if sudo is constrained
  42. #executable = /bin/sh
  43. # if inventory variables overlap, does the higher precedence one win
  44. # or are hash values merged together? The default is 'replace' but
  45. # this can also be set to 'merge'.
  46. #hash_behaviour = replace
  47. # How to handle variable replacement - as of 1.2, Jinja2 variable syntax is
  48. # preferred, but we still support the old $variable replacement too.
  49. # Turn off ${old_style} variables here if you like.
  50. #legacy_playbook_variables = yes
  51. # list any Jinja2 extensions to enable here:
  52. #jinja2_extensions = jinja2.ext.do,jinja2.ext.i18n
  53. # if set, always use this private key file for authentication, same as
  54. # if passing --private-key to ansible or ansible-playbook
  55. #private_key_file = /path/to/file
  56. # format of string {{ ansible_managed }} available within Jinja2
  57. # templates indicates to users editing templates files will be replaced.
  58. # replacing {file}, {host} and {uid} and strftime codes with proper values.
  59. ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
  60. # by default, ansible-playbook will display "Skipping [host]" if it determines a task
  61. # should not be run on a host. Set this to "False" if you don't want to see these "Skipping"
  62. # messages. NOTE: the task header will still be shown regardless of whether or not the
  63. # task is skipped.
  64. #display_skipped_hosts = True
  65. # by default (as of 1.3), Ansible will raise errors when attempting to dereference
  66. # Jinja2 variables that are not set in templates or action lines. Uncomment this line
  67. # to revert the behavior to pre-1.3.
  68. #error_on_undefined_vars = False
  69. # set plugin path directories here, seperate with colons
  70. action_plugins = /usr/share/ansible_plugins/action_plugins
  71. callback_plugins = /usr/share/ansible_plugins/callback_plugins
  72. connection_plugins = /usr/share/ansible_plugins/connection_plugins
  73. lookup_plugins = /usr/share/ansible_plugins/lookup_plugins
  74. vars_plugins = /usr/share/ansible_plugins/vars_plugins
  75. filter_plugins = /usr/share/ansible_plugins/filter_plugins
  76. # don't like cows? that's unfortunate.
  77. # set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1
  78. #nocows = 1
  79. # don't like colors either?
  80. # set to 1 if you don't want colors, or export ANSIBLE_NOCOLOR=1
  81. #nocolor = 1
  82. [paramiko_connection]
  83. # uncomment this line to cause the paramiko connection plugin to not record new host
  84. # keys encountered. Increases performance on new host additions. Setting works independently of the
  85. # host key checking setting above.
  86. #record_host_keys=False
  87. # by default, Ansible requests a pseudo-terminal for commands executed under sudo. Uncomment this
  88. # line to disable this behaviour.
  89. #pty=False
  90. [ssh_connection]
  91. # ssh arguments to use
  92. # Leaving off ControlPersist will result in poor performance, so use
  93. # paramiko on older platforms rather than removing it
  94. #ssh_args = -o ControlMaster=auto -o ControlPersist=60s
  95. # The path to use for the ControlPath sockets. This defaults to
  96. # "%(directory)s/ansible-ssh-%%h-%%p-%%r", however on some systems with
  97. # very long hostnames or very long path names (caused by long user names or
  98. # deeply nested home directories) this can exceed the character limit on
  99. # file socket names (108 characters for most platforms). In that case, you
  100. # may wish to shorten the string below.
  101. #
  102. # Example:
  103. # control_path = %(directory)s/%%h-%%r
  104. #control_path = %(directory)s/ansible-ssh-%%h-%%p-%%r
  105. # Enabling pipelining reduces the number of SSH operations required to
  106. # execute a module on the remote server. This can result in a significant
  107. # performance improvement when enabled, however when using "sudo:" you must
  108. # first disable 'requiretty' in /etc/sudoers
  109. #
  110. # By default, this option is disabled to preserve compatibility with
  111. # sudoers configurations that have requiretty (the default on many distros).
  112. #
  113. #pipelining = False
  114. # if True, make ansible use scp if the connection type is ssh
  115. # (default is sftp)
  116. #scp_if_ssh = True
  117. [accelerate]
  118. accelerate_port = 5099
  119. accelerate_timeout = 30
  120. accelerate_connect_timeout = 5.0