Added DIFF_ALWAYS constant

When set to True, will always print the diff. Defaults to False.

Fixes #18416 #16073
This commit is contained in:
Andrea Tartaglia 2016-11-16 10:38:43 +00:00 committed by Brian Coca
commit 2291163a7a
3 changed files with 10 additions and 1 deletions

View file

@ -383,6 +383,7 @@ COLOR_DIFF_LINES = get_config(p, 'colors', 'diff_lines', 'ANSIBLE_COLOR_DIFF_LI
# diff
DIFF_CONTEXT = get_config(p, 'diff', 'context', 'ANSIBLE_DIFF_CONTEXT', 3, value_type='integer')
DIFF_ALWAYS = get_config(p, 'diff', 'always', 'ANSIBLE_DIFF_ALWAYS', False, value_type='bool')
# non-configurable things
MODULE_REQUIRE_ARGS = ['command', 'win_command', 'net_command', 'shell', 'win_shell', 'raw', 'script']