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
ba1e3730
Commit
ba1e3730
authored
Jun 09, 2012
by
Daniel Hokka Zakrisson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow with_items to specify a variable
parent
4e254f23
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
3 deletions
+11
-3
lib/ansible/playbook/play.py
+2
-0
lib/ansible/utils.py
+8
-2
test/TestUtils.py
+1
-1
No files found.
lib/ansible/playbook/play.py
View file @
ba1e3730
...
...
@@ -89,6 +89,8 @@ class Play(object):
items
=
y
.
get
(
'with_items'
,
None
)
if
items
is
None
:
items
=
[
''
]
elif
isinstance
(
items
,
basestring
):
items
=
utils
.
varLookup
(
items
,
task_vars
)
for
item
in
items
:
mv
=
task_vars
.
copy
()
mv
[
'item'
]
=
item
...
...
lib/ansible/utils.py
View file @
ba1e3730
...
...
@@ -201,7 +201,7 @@ def parse_json(data):
_LISTRE
=
re
.
compile
(
r"(\w+)\[(\d+)\]"
)
def
varLookup
(
name
,
vars
):
def
_
varLookup
(
name
,
vars
):
''' find the contents of a possibly complex variable in vars. '''
path
=
name
.
split
(
'.'
)
space
=
vars
...
...
@@ -223,6 +223,12 @@ def varLookup(name, vars):
_KEYCRE
=
re
.
compile
(
r"\$(?P<complex>\{){0,1}((?(complex)[\w\.\[\]]+|\w+))(?(complex)\})"
)
# if { -> complex if complex, allow . and need trailing }
def
varLookup
(
varname
,
vars
):
m
=
_KEYCRE
.
search
(
varname
)
if
not
m
:
return
None
return
_varLookup
(
m
.
group
(
2
),
vars
)
def
varReplace
(
raw
,
vars
):
'''Perform variable replacement of $vars
...
...
@@ -245,7 +251,7 @@ def varReplace(raw, vars):
# original)
varname
=
m
.
group
(
2
)
replacement
=
unicode
(
varLookup
(
varname
,
vars
)
or
m
.
group
())
replacement
=
unicode
(
_
varLookup
(
varname
,
vars
)
or
m
.
group
())
start
,
end
=
m
.
span
()
done
.
append
(
raw
[:
start
])
# Keep stuff leading up to token
...
...
test/TestUtils.py
View file @
ba1e3730
...
...
@@ -17,7 +17,7 @@ class TestUtils(unittest.TestCase):
}
}
res
=
ansible
.
utils
.
varLookup
(
'data.who'
,
vars
)
res
=
ansible
.
utils
.
_
varLookup
(
'data.who'
,
vars
)
assert
sorted
(
res
)
==
sorted
(
vars
[
'data'
][
'who'
])
...
...
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