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
1acb29ff
Commit
1acb29ff
authored
Aug 18, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sequence will now run once for start=end, added test to suite
fixes #11979
parent
7eaacaf6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
lib/ansible/plugins/lookup/sequence.py
+3
-9
test/integration/roles/test_iterators/tasks/main.yml
+7
-1
No files found.
lib/ansible/plugins/lookup/sequence.py
View file @
1acb29ff
...
...
@@ -142,13 +142,9 @@ class LookupModule(LookupBase):
def
sanity_check
(
self
):
if
self
.
count
is
None
and
self
.
end
is
None
:
raise
AnsibleError
(
"must specify count or end in with_sequence"
)
raise
AnsibleError
(
"must specify count or end in with_sequence"
)
elif
self
.
count
is
not
None
and
self
.
end
is
not
None
:
raise
AnsibleError
(
"can't specify both count and end in with_sequence"
)
raise
AnsibleError
(
"can't specify both count and end in with_sequence"
)
elif
self
.
count
is
not
None
:
# convert count to end
if
self
.
count
!=
0
:
...
...
@@ -166,7 +162,7 @@ class LookupModule(LookupBase):
raise
AnsibleError
(
"bad formatting string:
%
s"
%
self
.
format
)
def
generate_sequence
(
self
):
if
self
.
stride
>
0
:
if
self
.
stride
>
=
0
:
adjust
=
1
else
:
adjust
=
-
1
...
...
@@ -187,8 +183,6 @@ class LookupModule(LookupBase):
for
term
in
terms
:
try
:
self
.
reset
()
# clear out things for this iteration
term
=
self
.
_templar
.
template
(
term
)
try
:
if
not
self
.
parse_simple_args
(
term
):
self
.
parse_kv_args
(
parse_kv
(
term
))
...
...
test/integration/roles/test_iterators/tasks/main.yml
View file @
1acb29ff
...
...
@@ -81,6 +81,11 @@
with_sequence
:
count=0
register
:
count_of_zero
-
name
:
test with_sequence does 1 when start == end
debug
:
msg='should run once'
with_sequence
:
start=1 end=1
register
:
start_equal_end
-
name
:
test with_sequence count 1
set_fact
:
"
{{
'x'
+
item
}}={{
item
}}"
with_sequence
:
count=1
...
...
@@ -88,6 +93,7 @@
-
assert
:
that
:
-
not start_equal_end| skipped
-
count_of_zero | skipped
-
not count_of_one | skipped
...
...
@@ -97,7 +103,7 @@
set_fact
:
"
random={{
item
}}"
with_random_choice
:
-
"
foo"
-
"
bar"
-
"
bar"
-
name
:
verify with_random_choice
assert
:
...
...
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