moving int() conversion to the play init

This commit is contained in:
Nandor Sivok 2012-12-14 18:05:08 +01:00
parent e91db5fcdc
commit f31fbdff1f
2 changed files with 2 additions and 2 deletions

View file

@ -406,7 +406,7 @@ class PlayBook(object):
# do N forks all the way through before moving to next
while len(all_hosts) > 0:
play_hosts = []
for x in range(int(play.serial)):
for x in range(play.serial):
if len(all_hosts) > 0:
play_hosts.append(all_hosts.pop())
serialized_batch.append(play_hosts)

View file

@ -75,7 +75,7 @@ class Play(object):
self.transport = ds.get('connection', self.playbook.transport)
self.tags = ds.get('tags', None)
self.gather_facts = ds.get('gather_facts', None)
self.serial = utils.template_ds(basedir, ds.get('serial', 0), self.vars)
self.serial = int(utils.template_ds(basedir, ds.get('serial', 0), self.vars))
if isinstance(self.remote_port, basestring):
self.remote_port = utils.template(basedir, self.remote_port, self.vars)