Switch this to just hit virtservers by default not all hosts.

This commit is contained in:
Kevin Fenzi 2015-12-13 18:36:29 +00:00
parent fc7c279349
commit b30c2d77f2

View file

@ -37,7 +37,7 @@ if __name__ == '__main__':
except AnsibleOptionsError: except AnsibleOptionsError:
if len(cli.args) != 1: if len(cli.args) != 1:
cli.args = copy.copy(args) cli.args = copy.copy(args)
cli.args.append('all') cli.args.append('virtservers')
cli.parse() cli.parse()
cli.run() cli.run()