From b14a548267c6e93962b4790ae95acaa5bd47ddcb Mon Sep 17 00:00:00 2001 From: Mike Rostermund Date: Sat, 29 Oct 2016 00:03:45 +0200 Subject: [PATCH] lxd_container: doc: Correct name and state for example of deleting (#3299) --- cloud/lxd/lxd_container.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/lxd/lxd_container.py b/cloud/lxd/lxd_container.py index a92cdd7ce7e..3b00d3b4f7a 100644 --- a/cloud/lxd/lxd_container.py +++ b/cloud/lxd/lxd_container.py @@ -179,10 +179,10 @@ EXAMPLES = ''' - hosts: localhost connection: local tasks: - - name: Restart a container + - name: Delete a container lxd_container: name: mycontainer - state: restarted + state: absent # An example for restarting a container - hosts: localhost