Forráskód Böngészése

Update ansible configuration

Emmanuel Bouthenot 8 éve
szülő
commit
39773f432b
1 módosított fájl, 16 hozzáadás és 2 törlés
  1. 16 2
      ansible.cfg

+ 16 - 2
ansible.cfg

@@ -45,6 +45,13 @@ gathering = smart
 # A minimal set of facts is always gathered.
 #gather_subset = all
 
+# some hardware related facts are collected
+# with a maximum timeout of 10 seconds. This
+# option lets you increase or decrease that
+# timeout to something more suitable for the
+# environment. 
+# gather_timeout = 10
+
 # additional paths to search for roles in, colon separated
 #roles_path    = /etc/ansible/roles
 
@@ -61,7 +68,10 @@ stdout_callback = skippy
 # values to True will make includes behave more like they did in the
 # 1.x versions.
 #task_includes_static = True
-handler_includes_static = True
+#handler_includes_static = True
+
+# Controls if a missing handler for a notification event is an error or a warning
+#error_on_missing_handler = True
 
 # change this for alternative sudo implementations
 #sudo_exe = sudo
@@ -114,6 +124,7 @@ handler_includes_static = True
 # templates indicates to users editing templates files will be replaced.
 # replacing {file}, {host} and {uid} and strftime codes with proper values.
 #ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid} on {host}
+# {file}, {host}, {uid}, and the timestamp can all interfere with idempotence
 # This short version is better used in templates as it won't flag the file as changed every run.
 #ansible_managed = Ansible managed: {file} on {host}
 
@@ -160,9 +171,11 @@ display_skipped_hosts = False
 
 # set plugin path directories here, separate with colons
 #action_plugins     = /usr/share/ansible/plugins/action
+#cache_plugins      = /usr/share/ansible/plugins/cache
 #callback_plugins   = /usr/share/ansible/plugins/callback
 #connection_plugins = /usr/share/ansible/plugins/connection
 #lookup_plugins     = /usr/share/ansible/plugins/lookup
+#inventory_plugins  = /usr/share/ansible/plugins/inventory
 #vars_plugins       = /usr/share/ansible/plugins/vars
 #filter_plugins     = /usr/share/ansible/plugins/filter
 #test_plugins       = /usr/share/ansible/plugins/test
@@ -273,7 +286,6 @@ module_compression = 'ZIP_DEFLATED'
 
 # ssh arguments to use
 # Leaving off ControlPersist will result in poor performance, so use
-# paramiko on older platforms rather than removing it
 #ssh_args = -o ControlMaster=auto -o ControlPersist=60s
 ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ForwardAgent=yes
 
@@ -298,6 +310,8 @@ ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ForwardAgent=yes
 #
 pipelining = True
 
+# Control the mechanism for transfering files
+#   * smart = try sftp and then try scp [default]
 # if True, make ansible use scp if the connection type is ssh
 # (default is sftp)
 #scp_if_ssh = True