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
13253f9c
Commit
13253f9c
authored
May 21, 2015
by
Toshio Kuratomi
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10565 from bcoca/with_sequence_expand
made sequence more flexible
parents
bb81f025
2a8a302e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
7 deletions
+37
-7
lib/ansible/runner/lookup_plugins/sequence.py
+19
-7
test/integration/roles/test_iterators/tasks/main.yml
+18
-0
No files found.
lib/ansible/runner/lookup_plugins/sequence.py
View file @
13253f9c
...
...
@@ -151,15 +151,26 @@ class LookupModule(object):
)
elif
self
.
count
is
not
None
:
# convert count to end
self
.
end
=
self
.
start
+
self
.
count
*
self
.
stride
-
1
if
self
.
count
!=
0
:
self
.
end
=
self
.
start
+
self
.
count
*
self
.
stride
-
1
else
:
self
.
start
=
0
self
.
end
=
0
self
.
stride
=
0
del
self
.
count
if
self
.
end
<
self
.
start
:
raise
AnsibleError
(
"can't count backwards"
)
if
self
.
stride
>
0
and
self
.
end
<
self
.
start
:
raise
AnsibleError
(
"to count backwards make stride negative"
)
if
self
.
stride
<
0
and
self
.
end
>
self
.
start
:
raise
AnsibleError
(
"to count forward don't make stride negative"
)
if
self
.
format
.
count
(
'
%
'
)
!=
1
:
raise
AnsibleError
(
"bad formatting string:
%
s"
%
self
.
format
)
def
generate_sequence
(
self
):
numbers
=
xrange
(
self
.
start
,
self
.
end
+
1
,
self
.
stride
)
if
self
.
stride
>
0
:
adjust
=
1
else
:
adjust
=
-
1
numbers
=
xrange
(
self
.
start
,
self
.
end
+
adjust
,
self
.
stride
)
for
i
in
numbers
:
try
:
...
...
@@ -193,12 +204,13 @@ class LookupModule(object):
self
.
sanity_check
()
results
.
extend
(
self
.
generate_sequence
())
if
self
.
start
!=
self
.
end
:
results
.
extend
(
self
.
generate_sequence
())
except
AnsibleError
:
raise
except
Exception
:
except
Exception
,
e
:
raise
AnsibleError
(
"unknown error generating sequence
"
"unknown error generating sequence
:
%
s"
%
str
(
e
)
)
return
results
test/integration/roles/test_iterators/tasks/main.yml
View file @
13253f9c
...
...
@@ -60,6 +60,10 @@
set_fact
:
"
{{
'x'
+
item
}}={{
item
}}"
with_sequence
:
start=0 end=3
-
name
:
test with_sequence backwards
set_fact
:
"
{{
'y'
+
item
}}={{
item
}}"
with_sequence
:
start=3 end=0 stride=-1
-
name
:
verify with_sequence
assert
:
that
:
...
...
@@ -67,6 +71,20 @@
-
"
x1
==
'1'"
-
"
x2
==
'2'"
-
"
x3
==
'3'"
-
"
y3
==
'3'"
-
"
y2
==
'2'"
-
"
y1
==
'1'"
-
"
y0
==
'0'"
-
name
:
test with_sequence not failing on count == 0
debug
:
msg='previously failed with backward counting error'
with_sequence
:
count=0
register
:
count_of_zero
-
assert
:
that
:
-
count_of_zero | skipped
-
not count_of_zero | failed
# WITH_RANDOM_CHOICE
...
...
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