diff options
author | Kevin Fenzi <kevin@scrye.com> | 2015-12-13 18:36:29 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2015-12-13 18:36:29 +0000 |
commit | b30c2d77f27e0710e8c2a89d54e8ea55ede085dc (patch) | |
tree | 7345d3a1c70c7d6da13fce9b820f7d440717a585 | |
parent | fc7c2793498a28af05c654dd153422b1fbe44cfc (diff) | |
download | ansible-b30c2d77f27e0710e8c2a89d54e8ea55ede085dc.tar.gz ansible-b30c2d77f27e0710e8c2a89d54e8ea55ede085dc.tar.xz ansible-b30c2d77f27e0710e8c2a89d54e8ea55ede085dc.zip |
Switch this to just hit virtservers by default not all hosts.
-rwxr-xr-x | scripts/list-vms-per-host.v2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/list-vms-per-host.v2 b/scripts/list-vms-per-host.v2 index ebb17f503..a689a2bed 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() |