sequence will now run once for start=end, added test to suite

fixes #11979
This commit is contained in:
Brian Coca 2015-08-18 02:33:23 -04:00
parent 7eaacaf66e
commit 1acb29ff9b
2 changed files with 10 additions and 10 deletions

View file

@ -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))