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
04da466c
Commit
04da466c
authored
Aug 27, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing up serialize_args utility function
parent
e99db078
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
14 deletions
+13
-14
lib/ansible/runner/__init__.py
+0
-6
lib/ansible/utils/__init__.py
+13
-8
No files found.
lib/ansible/runner/__init__.py
View file @
04da466c
...
...
@@ -49,7 +49,6 @@ from ansible.module_common import ModuleReplacer
from
ansible.module_utils.splitter
import
split_args
from
ansible.cache
import
FactCache
from
ansible.utils
import
update_hash
from
ansible.utils
import
OMIT_PLACE_HOLDER
module_replacer
=
ModuleReplacer
(
strip_comments
=
False
)
...
...
@@ -629,13 +628,8 @@ class Runner(object):
inject
[
'vars'
]
=
self
.
module_vars
inject
[
'defaults'
]
=
self
.
default_vars
inject
[
'environment'
]
=
self
.
environment
<<<<<<<
HEAD
inject
[
'playbook_dir'
]
=
os
.
path
.
abspath
(
self
.
basedir
)
inject
[
'omit'
]
=
OMIT_PLACE_HOLDER
=======
inject
[
'playbook_dir'
]
=
self
.
basedir
inject
[
'omit'
]
=
self
.
omit_token
>>>>>>>
Additional
fixes
for
the
new
omit
parameter
variable
# template this one is available, callbacks use this
delegate_to
=
self
.
module_vars
.
get
(
'delegate_to'
)
...
...
lib/ansible/utils/__init__.py
View file @
04da466c
...
...
@@ -545,6 +545,18 @@ def parse_json(raw_data, from_remote=False, from_inventory=False):
return
results
def
serialize_args
(
args
):
'''
Flattens a dictionary args to a k=v string
'''
module_args
=
""
for
(
k
,
v
)
in
args
.
iteritems
():
if
isinstance
(
v
,
basestring
):
module_args
=
"
%
s=
%
s
%
s"
%
(
k
,
pipes
.
quote
(
v
),
module_args
)
elif
isinstance
(
v
,
bool
):
module_args
=
"
%
s=
%
s
%
s"
%
(
k
,
str
(
v
),
module_args
)
return
module_args
.
strip
()
def
merge_module_args
(
current_args
,
new_args
):
'''
merges either a dictionary or string of k=v pairs with another string of k=v pairs,
...
...
@@ -559,14 +571,7 @@ def merge_module_args(current_args, new_args):
elif
isinstance
(
new_args
,
basestring
):
new_args_kv
=
parse_kv
(
new_args
)
final_args
.
update
(
new_args_kv
)
# then we re-assemble into a string
module_args
=
""
for
(
k
,
v
)
in
final_args
.
iteritems
():
if
isinstance
(
v
,
basestring
):
module_args
=
"
%
s=
%
s
%
s"
%
(
k
,
pipes
.
quote
(
v
),
module_args
)
elif
isinstance
(
v
,
bool
):
module_args
=
"
%
s=
%
s
%
s"
%
(
k
,
str
(
v
),
module_args
)
return
module_args
.
strip
()
return
serialize_args
(
final_args
)
def
parse_yaml
(
data
,
path_hint
=
None
):
''' convert a yaml string to a data structure. Also supports JSON, ssssssh!!!'''
...
...
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