summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael DeHaan <michael.dehaan@gmail.com>2013-03-31 07:33:50 -0700
committerMichael DeHaan <michael.dehaan@gmail.com>2013-03-31 07:33:50 -0700
commit207439ef6cedf9dce4feea4471f79a93010f2bf5 (patch)
tree5370b6bbbe1d0c292150214eeed4e2a5bdd625d0
parentfe34bebbbb468a0b155facb5b24b24f955843d41 (diff)
parent199da48504b2236cc380f2cc13ccb32fe3e139eb (diff)
downloadansible-207439ef6cedf9dce4feea4471f79a93010f2bf5.tar.gz
Merge pull request #2534 from victorcoder/devel
Examples must use "name" parameter instead of "guest" for virt module, b...
-rw-r--r--library/virt6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/virt b/library/virt
index 37dc2a149a..26f1a499a8 100644
--- a/library/virt
+++ b/library/virt
@@ -45,11 +45,11 @@ options:
"shutdown", "undefine", "destroy", "get_xml", "autostart",
"freemem", "list_vms", "info", "nodeinfo", "virttype"]
examples:
- - code: "virt: guest=alpha state=running"
+ - code: "virt: name=alpha state=running"
description: "Example from Ansible Playbooks"
- - code: ansible host -m virt -a "guest=alpha command=status"
+ - code: ansible host -m virt -a "name=alpha command=status"
description: "Example guest management with C(/usr/bin/ansible)"
- - code: ansible host -m virt -a "guest=alpha command=get_xml"
+ - code: ansible host -m virt -a "name=alpha command=get_xml"
description: "Use C(/usr/bin/ansible) to get the xml of the guest machine alpha"
requirements: [ "libvirt" ]
author: Michael DeHaan, Seth Vidal