summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMichael DeHaan <michael@ansible.com>2014-08-22 16:12:32 -0400
committerMichael DeHaan <michael@ansible.com>2014-08-22 16:12:48 -0400
commita419ffdf41ff6c2ce04ab55251876170a29c7e3f (patch)
tree1fa9f6832db4f56ad156ae8bc05c4c2abeb54847 /examples
parentb44e22aa68ba71f0baa3bc37f7d92f051dfed505 (diff)
downloadansible-a419ffdf41ff6c2ce04ab55251876170a29c7e3f.tar.gz
Make command warnings off by default to minimize surprises.
Diffstat (limited to 'examples')
-rw-r--r--examples/ansible.cfg7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg
index 9113472406..4bee138ec8 100644
--- a/examples/ansible.cfg
+++ b/examples/ansible.cfg
@@ -102,12 +102,13 @@ ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S by {uid}
# to disable these warnings, set the following value to False:
#deprecation_warnings = True
-# by default (as of 1.8), Ansible will warn when usage of the shell and
+# (as of 1.8), Ansible can optionally warn when usage of the shell and
# 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
-# parameter string.
-# command_warnings = True
+# parameter string. This will for example suggest using the git module
+# instead of shelling out to the git command.
+# command_warnings = False
# set plugin path directories here, separate with colons