Kinda have to pass the host list parameter

This commit is contained in:
Michael DeHaan 2012-02-24 02:14:22 -05:00
parent 9e931f323c
commit ee2fa721f1

View file

@ -112,7 +112,8 @@ class PlayBook(object):
(comment, module_name, module_args) = instructions
print "running task: (%s) on hosts matching (%s)" % (comment, pattern)
runner = self._get_task_runner(
pattern=pattern,
pattern=pattern,
host_list=host_list,
module_name=module_name,
module_args=module_args
)