summaryrefslogtreecommitdiff
path: root/lib/ansible/cli
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/cli
parent81072fcba10d6436babe3e0cd7525f857143a985 (diff)
downloadansible-f497d771c8bda7874382bbffbf641eaedf015f94.tar.gz
win_shell/win_command changes + tests (#17557)
Diffstat (limited to 'lib/ansible/cli')
-rw-r--r--lib/ansible/cli/adhoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/cli/adhoc.py b/lib/ansible/cli/adhoc.py
index 95ab640ded..1b615473e0 100644
--- a/lib/ansible/cli/adhoc.py
+++ b/lib/ansible/cli/adhoc.py
@@ -85,7 +85,7 @@ class AdHocCLI(CLI):
return True
def _play_ds(self, pattern, async, poll):
- check_raw = self.options.module_name in ('command', 'shell', 'script', 'raw')
+ check_raw = self.options.module_name in ('command', 'win_command', 'shell', 'win_shell', 'script', 'raw')
return dict(
name = "Ansible Ad-Hoc",
hosts = pattern,