Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
165fff8a
Commit
165fff8a
authored
Jul 15, 2015
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing module arg parsing splitting when action is a variable
Fixes #11122
parent
780e428b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
lib/ansible/parsing/mod_args.py
+4
-8
No files found.
lib/ansible/parsing/mod_args.py
View file @
165fff8a
...
@@ -23,7 +23,7 @@ from six import iteritems, string_types
...
@@ -23,7 +23,7 @@ from six import iteritems, string_types
from
ansible.errors
import
AnsibleParserError
from
ansible.errors
import
AnsibleParserError
from
ansible.plugins
import
module_loader
from
ansible.plugins
import
module_loader
from
ansible.parsing.splitter
import
parse_kv
from
ansible.parsing.splitter
import
parse_kv
,
split_args
# For filtering out modules correctly below
# For filtering out modules correctly below
RAW_PARAM_MODULES
=
([
RAW_PARAM_MODULES
=
([
...
@@ -91,7 +91,7 @@ class ModuleArgsParser:
...
@@ -91,7 +91,7 @@ class ModuleArgsParser:
self
.
_task_ds
=
task_ds
self
.
_task_ds
=
task_ds
def
_split_module_string
(
self
,
str
):
def
_split_module_string
(
self
,
module_string
):
'''
'''
when module names are expressed like:
when module names are expressed like:
action: copy src=a dest=b
action: copy src=a dest=b
...
@@ -99,7 +99,7 @@ class ModuleArgsParser:
...
@@ -99,7 +99,7 @@ class ModuleArgsParser:
and the rest are strings pertaining to the arguments.
and the rest are strings pertaining to the arguments.
'''
'''
tokens
=
s
tr
.
split
(
)
tokens
=
s
plit_args
(
module_string
)
if
len
(
tokens
)
>
1
:
if
len
(
tokens
)
>
1
:
return
(
tokens
[
0
],
" "
.
join
(
tokens
[
1
:]))
return
(
tokens
[
0
],
" "
.
join
(
tokens
[
1
:]))
else
:
else
:
...
@@ -240,17 +240,13 @@ class ModuleArgsParser:
...
@@ -240,17 +240,13 @@ class ModuleArgsParser:
args
=
dict
()
args
=
dict
()
#
# We can have one of action, local_action, or module specified
#
# this is the 'extra gross' scenario detailed above, so we grab
# this is the 'extra gross' scenario detailed above, so we grab
# the args and pass them in as additional arguments, which can/will
# the args and pass them in as additional arguments, which can/will
# be overwritten via dict updates from the other arg sources below
# be overwritten via dict updates from the other arg sources below
# FIXME: add test cases for this
# FIXME: add test cases for this
additional_args
=
self
.
_task_ds
.
get
(
'args'
,
dict
())
additional_args
=
self
.
_task_ds
.
get
(
'args'
,
dict
())
# We can have one of action, local_action, or module specified
# action
# action
if
'action'
in
self
.
_task_ds
:
if
'action'
in
self
.
_task_ds
:
# an old school 'action' statement
# an old school 'action' statement
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment