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
a7adc8ef
Commit
a7adc8ef
authored
Oct 07, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow doing things like "groups.groupname" in with_nested.
Fixes #3858
parent
a2ac5d6d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
lib/ansible/runner/lookup_plugins/nested.py
+2
-6
lib/ansible/runner/lookup_plugins/together.py
+2
-4
No files found.
lib/ansible/runner/lookup_plugins/nested.py
View file @
a7adc8ef
...
...
@@ -45,12 +45,8 @@ class LookupModule(object):
def
__lookup_injects
(
self
,
terms
,
inject
):
results
=
[]
for
x
in
terms
:
if
isinstance
(
x
,
basestring
)
and
x
in
inject
:
results
.
append
(
inject
[
x
])
elif
isinstance
(
x
,
basestring
):
raise
errors
.
AnsibleError
(
"cannot resolve:
%
s"
%
x
)
else
:
results
.
append
(
x
)
intermediate
=
utils
.
listify_lookup_plugin_terms
(
x
,
self
.
basedir
,
inject
)
results
.
append
(
intermediate
)
return
results
def
run
(
self
,
terms
,
inject
=
None
,
**
kwargs
):
...
...
lib/ansible/runner/lookup_plugins/together.py
View file @
a7adc8ef
...
...
@@ -45,10 +45,8 @@ class LookupModule(object):
def
__lookup_injects
(
self
,
terms
,
inject
):
results
=
[]
for
x
in
terms
:
if
isinstance
(
x
,
basestring
)
and
x
in
inject
:
results
.
append
(
inject
[
x
])
else
:
results
.
append
(
x
)
intermediate
=
utils
.
listify_lookup_plugin_terms
(
x
,
self
.
basedir
,
inject
)
results
.
append
(
intermediate
)
return
results
def
run
(
self
,
terms
,
inject
=
None
,
**
kwargs
):
...
...
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