From b30c2d77f27e0710e8c2a89d54e8ea55ede085dc Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 13 Dec 2015 18:36:29 +0000 Subject: [PATCH] Switch this to just hit virtservers by default not all hosts. --- scripts/list-vms-per-host.v2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/list-vms-per-host.v2 b/scripts/list-vms-per-host.v2 index ebb17f5038..a689a2bed7 100755 --- a/scripts/list-vms-per-host.v2 +++ b/scripts/list-vms-per-host.v2 @@ -37,7 +37,7 @@ if __name__ == '__main__': except AnsibleOptionsError: if len(cli.args) != 1: cli.args = copy.copy(args) - cli.args.append('all') + cli.args.append('virtservers') cli.parse() cli.run()