diff options
author | James Cammarata <jimi@sngx.net> | 2013-08-15 16:25:29 +0200 |
---|---|---|
committer | James Cammarata <jimi@sngx.net> | 2013-08-15 16:28:34 +0200 |
commit | ad595eadeaa24d7d2bf1c4769382a87ca755876d (patch) | |
tree | f3b6a6029e90d8bb92877b24403ca49f34e58716 /examples | |
parent | Cleaning up of apt_repository module and removing wget parts (diff) | |
download | ansible-ad595eadeaa24d7d2bf1c4769382a87ca755876d.tar.xz ansible-ad595eadeaa24d7d2bf1c4769382a87ca755876d.zip |
Enable error_on_undefined_vars by default
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index 9818959757..acedfb9cda 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -72,9 +72,10 @@ timeout = 10 # 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} -# if set, Ansible will raise errors when attempting to redeference Jinja2 -# variables that are not set in templates or action lines. -#error_on_undefined_vars = True +# 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 # set plugin path directories here, seperate with colons action_plugins = /usr/share/ansible_plugins/action_plugins |