summaryrefslogtreecommitdiff
path: root/lib/ansible/constants.py
diff options
context:
space:
mode:
authorMatt Davis <nitzmahone@users.noreply.github.com>2016-09-15 11:25:56 -0700
committerGitHub <noreply@github.com>2016-09-15 11:25:56 -0700
commitf497d771c8bda7874382bbffbf641eaedf015f94 (patch)
treeed5f39dfb0f54d6b24cd26c09913ededce7312b6 /lib/ansible/constants.py
parent81072fcba10d6436babe3e0cd7525f857143a985 (diff)
downloadansible-f497d771c8bda7874382bbffbf641eaedf015f94.tar.gz
win_shell/win_command changes + tests (#17557)
Diffstat (limited to 'lib/ansible/constants.py')
-rw-r--r--lib/ansible/constants.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/constants.py b/lib/ansible/constants.py
index 0cc4c343dc..606fb3c194 100644
--- a/lib/ansible/constants.py
+++ b/lib/ansible/constants.py
@@ -326,8 +326,8 @@ COLOR_DIFF_LINES = get_config(p, 'colors', 'diff_lines', 'ANSIBLE_COLOR_DIFF_LI
DIFF_CONTEXT = get_config(p, 'diff', 'context', 'ANSIBLE_DIFF_CONTEXT', 3, integer=True)
# non-configurable things
-MODULE_REQUIRE_ARGS = ['command', 'shell', 'raw', 'script']
-MODULE_NO_JSON = ['command', 'shell', 'raw']
+MODULE_REQUIRE_ARGS = ['command', 'win_command', 'shell', 'win_shell', 'raw', 'script']
+MODULE_NO_JSON = ['command', 'win_command', 'shell', 'win_shell', 'raw']
DEFAULT_BECOME_PASS = None
DEFAULT_SUDO_PASS = None
DEFAULT_REMOTE_PASS = None