Make command warnings off by default to minimize surprises.

This commit is contained in:
Michael DeHaan 2014-08-22 16:12:32 -04:00
commit a419ffdf41
5 changed files with 9 additions and 9 deletions

View file

@ -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