2014-01-28 17:38:52 +01:00
|
|
|
# config file for ansible -- http://ansible.com/
|
|
|
|
# ==============================================
|
2013-06-18 19:24:30 +02:00
|
|
|
|
|
|
|
# nearly all parameters can be overridden in ansible-playbook
|
2014-02-14 21:34:58 +01:00
|
|
|
# or with command line flags. ansible will read ANSIBLE_CONFIG,
|
|
|
|
# ansible.cfg in the current working directory, .ansible.cfg in
|
|
|
|
# the home directory or /etc/ansible/ansible.cfg, whichever it
|
|
|
|
# finds first
|
2012-08-14 01:17:14 +02:00
|
|
|
|
|
|
|
[defaults]
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# some basic default values...
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2015-01-29 19:28:33 +01:00
|
|
|
inventory = /etc/ansible/hosts
|
2015-01-05 17:40:45 +01:00
|
|
|
#library = /usr/share/my_modules/
|
2013-06-18 19:24:30 +02:00
|
|
|
remote_tmp = $HOME/.ansible/tmp
|
|
|
|
pattern = *
|
|
|
|
forks = 5
|
|
|
|
poll_interval = 15
|
|
|
|
sudo_user = root
|
|
|
|
#ask_sudo_pass = True
|
|
|
|
#ask_pass = True
|
2013-07-04 22:47:17 +02:00
|
|
|
transport = smart
|
2014-12-16 20:09:42 +01:00
|
|
|
#remote_port = 22
|
2014-03-10 23:09:06 +01:00
|
|
|
module_lang = C
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2014-03-19 23:02:49 +01:00
|
|
|
# plays will gather facts by default, which contain information about
|
|
|
|
# the remote system.
|
|
|
|
#
|
|
|
|
# smart - gather by default, but don't regather if already gathered
|
|
|
|
# implicit - gather by default, turn off with gather_facts: False
|
|
|
|
# explicit - do not gather by default, must say gather_facts: True
|
|
|
|
gathering = implicit
|
2014-03-15 21:19:28 +01:00
|
|
|
|
2014-03-08 11:49:55 +01:00
|
|
|
# additional paths to search for roles in, colon separated
|
2013-10-12 16:15:00 +02:00
|
|
|
#roles_path = /etc/ansible/roles
|
|
|
|
|
2013-07-03 22:47:20 +02:00
|
|
|
# uncomment this to disable SSH key host checking
|
2013-07-03 22:55:10 +02:00
|
|
|
#host_key_checking = False
|
2013-07-03 22:47:20 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# change this for alternative sudo implementations
|
2013-06-20 22:19:47 +02:00
|
|
|
sudo_exe = sudo
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# what flags to pass to sudo
|
2013-06-20 22:19:47 +02:00
|
|
|
#sudo_flags = -H
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# SSH timeout
|
2013-06-20 22:19:47 +02:00
|
|
|
timeout = 10
|
2013-01-23 06:58:16 +01:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# default user to use for playbooks if user is not specified
|
|
|
|
# (/usr/bin/ansible will use current user as default)
|
2013-06-20 22:19:47 +02:00
|
|
|
#remote_user = root
|
2013-01-23 06:58:16 +01:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# logging is off by default unless this path is defined
|
|
|
|
# if so defined, consider logrotate
|
2013-06-20 22:19:47 +02:00
|
|
|
#log_path = /var/log/ansible.log
|
2013-01-28 17:41:43 +01:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# default module name for /usr/bin/ansible
|
2013-06-20 22:19:47 +02:00
|
|
|
#module_name = command
|
2013-04-05 01:39:22 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# use this shell for commands executed under sudo
|
|
|
|
# you may need to change this to bin/bash in rare instances
|
|
|
|
# if sudo is constrained
|
2013-06-20 22:19:47 +02:00
|
|
|
#executable = /bin/sh
|
2013-04-05 01:39:22 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# if inventory variables overlap, does the higher precedence one win
|
|
|
|
# or are hash values merged together? The default is 'replace' but
|
|
|
|
# this can also be set to 'merge'.
|
2013-06-20 22:19:47 +02:00
|
|
|
#hash_behaviour = replace
|
2013-01-23 21:39:34 +01:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# list any Jinja2 extensions to enable here:
|
2013-06-20 22:19:47 +02:00
|
|
|
#jinja2_extensions = jinja2.ext.do,jinja2.ext.i18n
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# if set, always use this private key file for authentication, same as
|
|
|
|
# if passing --private-key to ansible or ansible-playbook
|
2013-06-20 22:19:47 +02:00
|
|
|
#private_key_file = /path/to/file
|
2012-08-14 01:17:14 +02:00
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# format of string {{ ansible_managed }} available within Jinja2
|
|
|
|
# templates indicates to users editing templates files will be replaced.
|
2013-06-20 21:47:45 +02:00
|
|
|
# replacing {file}, {host} and {uid} and strftime codes with proper values.
|
2012-10-03 15:59:38 +02:00
|
|
|
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
|
|
|
|
|
2013-09-26 16:03:23 +02:00
|
|
|
# by default, ansible-playbook will display "Skipping [host]" if it determines a task
|
2013-10-01 04:02:09 +02:00
|
|
|
# should not be run on a host. Set this to "False" if you don't want to see these "Skipping"
|
|
|
|
# messages. NOTE: the task header will still be shown regardless of whether or not the
|
|
|
|
# task is skipped.
|
|
|
|
#display_skipped_hosts = True
|
2013-09-26 16:03:23 +02:00
|
|
|
|
2013-08-15 16:25:29 +02:00
|
|
|
# by default (as of 1.3), Ansible will raise errors when attempting to dereference
|
|
|
|
# Jinja2 variables that are not set in templates or action lines. Uncomment this line
|
|
|
|
# to revert the behavior to pre-1.3.
|
|
|
|
#error_on_undefined_vars = False
|
2013-06-18 19:31:08 +02:00
|
|
|
|
2014-04-30 21:44:10 +02:00
|
|
|
# by default (as of 1.6), Ansible may display warnings based on the configuration of the
|
|
|
|
# system running ansible itself. This may include warnings about 3rd party packages or
|
|
|
|
# other conditions that should be resolved if possible.
|
|
|
|
# to disable these warnings, set the following value to False:
|
|
|
|
#system_warnings = True
|
|
|
|
|
|
|
|
# by default (as of 1.4), Ansible may display deprecation warnings for language
|
|
|
|
# features that should no longer be used and will be removed in future versions.
|
|
|
|
# to disable these warnings, set the following value to False:
|
|
|
|
#deprecation_warnings = True
|
|
|
|
|
2014-08-22 22:12:32 +02:00
|
|
|
# (as of 1.8), Ansible can optionally warn when usage of the shell and
|
2014-08-22 21:25:57 +02:00
|
|
|
# command module appear to be simplified by using a default Ansible module
|
|
|
|
# instead. These warnings can be silenced by adjusting the following
|
|
|
|
# setting or adding warn=yes or warn=no to the end of the command line
|
2014-08-22 22:12:32 +02:00
|
|
|
# parameter string. This will for example suggest using the git module
|
|
|
|
# instead of shelling out to the git command.
|
|
|
|
# command_warnings = False
|
2014-08-22 21:25:57 +02:00
|
|
|
|
|
|
|
|
2014-03-08 11:49:55 +01:00
|
|
|
# set plugin path directories here, separate with colons
|
2012-10-27 01:55:59 +02:00
|
|
|
action_plugins = /usr/share/ansible_plugins/action_plugins
|
|
|
|
callback_plugins = /usr/share/ansible_plugins/callback_plugins
|
|
|
|
connection_plugins = /usr/share/ansible_plugins/connection_plugins
|
|
|
|
lookup_plugins = /usr/share/ansible_plugins/lookup_plugins
|
2012-10-27 02:19:09 +02:00
|
|
|
vars_plugins = /usr/share/ansible_plugins/vars_plugins
|
2013-01-17 22:07:39 +01:00
|
|
|
filter_plugins = /usr/share/ansible_plugins/filter_plugins
|
2012-10-27 01:55:59 +02:00
|
|
|
|
2014-09-10 15:38:24 +02:00
|
|
|
# by default callbacks are not loaded for /bin/ansible, enable this if you
|
|
|
|
# want, for example, a notification or logging callback to also apply to
|
|
|
|
# /bin/ansible runs
|
|
|
|
#bin_ansible_callbacks = False
|
|
|
|
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# don't like cows? that's unfortunate.
|
|
|
|
# set to 1 if you don't want cowsay support or export ANSIBLE_NOCOWS=1
|
2013-06-20 22:19:47 +02:00
|
|
|
#nocows = 1
|
2013-04-23 16:40:11 +02:00
|
|
|
|
2013-08-08 18:07:33 +02:00
|
|
|
# don't like colors either?
|
|
|
|
# set to 1 if you don't want colors, or export ANSIBLE_NOCOLOR=1
|
|
|
|
#nocolor = 1
|
|
|
|
|
2014-03-10 22:06:52 +01:00
|
|
|
# the CA certificate path used for validating SSL certs. This path
|
|
|
|
# should exist on the controlling node, not the target nodes
|
|
|
|
# common locations:
|
|
|
|
# RHEL/CentOS: /etc/pki/tls/certs/ca-bundle.crt
|
|
|
|
# Fedora : /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
|
|
|
|
# Ubuntu : /usr/share/ca-certificates/cacert.org/cacert.org.crt
|
|
|
|
#ca_file_path =
|
|
|
|
|
|
|
|
# the http user-agent string to use when fetching urls. Some web server
|
|
|
|
# operators block the default urllib user agent as it is frequently used
|
|
|
|
# by malicious attacks/scripts, so we set it to something unique to
|
|
|
|
# avoid issues.
|
|
|
|
#http_user_agent = ansible-agent
|
|
|
|
|
2014-12-04 23:23:35 +01:00
|
|
|
# if set to a persistent type (not 'memory', for example 'redis') fact values
|
2014-08-11 17:37:30 +02:00
|
|
|
# from previous runs in Ansible will be stored. This may be useful when
|
|
|
|
# wanting to use, for example, IP information from one group of servers
|
|
|
|
# without having to talk to them in the same playbook run to get their
|
|
|
|
# current IP information.
|
|
|
|
fact_caching = memory
|
|
|
|
|
2012-08-15 02:13:02 +02:00
|
|
|
[paramiko_connection]
|
|
|
|
|
2013-07-06 03:42:41 +02:00
|
|
|
# uncomment this line to cause the paramiko connection plugin to not record new host
|
2013-07-06 04:05:05 +02:00
|
|
|
# keys encountered. Increases performance on new host additions. Setting works independently of the
|
2013-07-06 03:42:41 +02:00
|
|
|
# host key checking setting above.
|
|
|
|
#record_host_keys=False
|
2012-08-15 02:13:02 +02:00
|
|
|
|
2013-10-07 14:39:23 +02:00
|
|
|
# by default, Ansible requests a pseudo-terminal for commands executed under sudo. Uncomment this
|
|
|
|
# line to disable this behaviour.
|
2013-09-25 14:15:49 +02:00
|
|
|
#pty=False
|
|
|
|
|
2012-08-15 02:13:02 +02:00
|
|
|
[ssh_connection]
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# ssh arguments to use
|
|
|
|
# Leaving off ControlPersist will result in poor performance, so use
|
|
|
|
# paramiko on older platforms rather than removing it
|
2013-08-20 21:37:11 +02:00
|
|
|
#ssh_args = -o ControlMaster=auto -o ControlPersist=60s
|
2012-08-15 02:13:02 +02:00
|
|
|
|
2013-09-19 04:10:32 +02:00
|
|
|
# The path to use for the ControlPath sockets. This defaults to
|
|
|
|
# "%(directory)s/ansible-ssh-%%h-%%p-%%r", however on some systems with
|
|
|
|
# very long hostnames or very long path names (caused by long user names or
|
|
|
|
# deeply nested home directories) this can exceed the character limit on
|
|
|
|
# file socket names (108 characters for most platforms). In that case, you
|
|
|
|
# may wish to shorten the string below.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# control_path = %(directory)s/%%h-%%r
|
|
|
|
#control_path = %(directory)s/ansible-ssh-%%h-%%p-%%r
|
|
|
|
|
2014-01-16 19:40:28 +01:00
|
|
|
# Enabling pipelining reduces the number of SSH operations required to
|
|
|
|
# execute a module on the remote server. This can result in a significant
|
|
|
|
# performance improvement when enabled, however when using "sudo:" you must
|
|
|
|
# first disable 'requiretty' in /etc/sudoers
|
|
|
|
#
|
|
|
|
# By default, this option is disabled to preserve compatibility with
|
|
|
|
# sudoers configurations that have requiretty (the default on many distros).
|
|
|
|
#
|
|
|
|
#pipelining = False
|
|
|
|
|
2013-06-18 19:24:30 +02:00
|
|
|
# if True, make ansible use scp if the connection type is ssh
|
|
|
|
# (default is sftp)
|
2013-06-20 22:19:47 +02:00
|
|
|
#scp_if_ssh = True
|
2012-11-08 20:32:56 +01:00
|
|
|
|
2013-08-27 22:25:54 +02:00
|
|
|
[accelerate]
|
|
|
|
accelerate_port = 5099
|
2013-10-02 15:36:38 +02:00
|
|
|
accelerate_timeout = 30
|
|
|
|
accelerate_connect_timeout = 5.0
|
2014-03-26 01:29:55 +01:00
|
|
|
|
|
|
|
# The daemon timeout is measured in minutes. This time is measured
|
|
|
|
# from the last activity to the accelerate daemon.
|
|
|
|
accelerate_daemon_timeout = 30
|
|
|
|
|
|
|
|
# If set to yes, accelerate_multi_key will allow multiple
|
|
|
|
# private keys to be uploaded to it, though each user must
|
|
|
|
# have access to the system via SSH to add a new key. The default
|
|
|
|
# is "no".
|
|
|
|
#accelerate_multi_key = yes
|
|
|
|
|