summaryrefslogtreecommitdiff
path: root/lib/ansible/parsing/splitter.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/parsing/splitter.py')
-rw-r--r--lib/ansible/parsing/splitter.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ansible/parsing/splitter.py b/lib/ansible/parsing/splitter.py
index b5209b01ff..ab7df04db7 100644
--- a/lib/ansible/parsing/splitter.py
+++ b/lib/ansible/parsing/splitter.py
@@ -87,9 +87,8 @@ def parse_kv(args, check_raw=False):
k = x[:pos]
v = x[pos + 1:]
- # FIXME: make the retrieval of this list of shell/command
- # options a function, so the list is centralized
- if check_raw and k not in ('creates', 'removes', 'chdir', 'executable', 'warn'):
+ # FIXME: make the retrieval of this list of shell/command options a function, so the list is centralized
+ if check_raw and k not in ('creates', 'removes', 'chdir', 'executable', 'warn', 'stdin', 'stdin_add_newline', 'strip_empty_ends'):
raw_params.append(orig_x)
else:
options[k.strip()] = unquote(v.strip())