Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
3b07f848
Commit
3b07f848
authored
Nov 27, 2013
by
Brian Candler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Additional idempotent states for virt module: "destroyed" and "paused"
parent
30948ae0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
3 deletions
+14
-3
library/cloud/virt
+14
-3
No files found.
library/cloud/virt
View file @
3b07f848
...
@@ -36,7 +36,7 @@ options:
...
@@ -36,7 +36,7 @@ options:
since these refer only to VM states. After starting a guest, it may not
since these refer only to VM states. After starting a guest, it may not
be immediately accessible.
be immediately accessible.
required: false
required: false
choices: [ "running", "shutdown" ]
choices: [ "running", "shutdown"
, "destroyed", "paused"
]
default: "no"
default: "no"
command:
command:
description:
description:
...
@@ -414,13 +414,24 @@ def core(module):
...
@@ -414,13 +414,24 @@ def core(module):
res
[
'changed'
]
=
False
res
[
'changed'
]
=
False
if
state
==
'running'
:
if
state
==
'running'
:
if
v
.
status
(
guest
)
is
not
'running'
:
if
v
.
status
(
guest
)
is
'paused'
:
res
[
'changed'
]
=
True
res
[
'msg'
]
=
v
.
unpause
(
guest
)
elif
v
.
status
(
guest
)
is
not
'running'
:
res
[
'changed'
]
=
True
res
[
'changed'
]
=
True
res
[
'msg'
]
=
v
.
start
(
guest
)
res
[
'msg'
]
=
v
.
start
(
guest
)
elif
state
==
'shutdown'
:
elif
state
==
'shutdown'
:
if
v
.
status
(
guest
)
is
not
'shutdown'
:
if
v
.
status
(
guest
)
is
not
'shutdown'
:
res
[
'changed'
]
=
True
res
[
'changed'
]
=
True
res
[
'msg'
]
=
v
.
shutdown
(
guest
)
res
[
'msg'
]
=
v
.
shutdown
(
guest
)
elif
state
==
'destroyed'
:
if
v
.
status
(
guest
)
is
not
'shutdown'
:
res
[
'changed'
]
=
True
res
[
'msg'
]
=
v
.
destroy
(
guest
)
elif
state
==
'paused'
:
if
v
.
status
(
guest
)
is
'running'
:
res
[
'changed'
]
=
True
res
[
'msg'
]
=
v
.
pause
(
guest
)
else
:
else
:
module
.
fail_json
(
msg
=
"unexpected state"
)
module
.
fail_json
(
msg
=
"unexpected state"
)
...
@@ -459,7 +470,7 @@ def main():
...
@@ -459,7 +470,7 @@ def main():
module
=
AnsibleModule
(
argument_spec
=
dict
(
module
=
AnsibleModule
(
argument_spec
=
dict
(
name
=
dict
(
aliases
=
[
'guest'
]),
name
=
dict
(
aliases
=
[
'guest'
]),
state
=
dict
(
choices
=
[
'running'
,
'shutdown'
]),
state
=
dict
(
choices
=
[
'running'
,
'shutdown'
,
'destroyed'
,
'paused'
]),
command
=
dict
(
choices
=
ALL_COMMANDS
),
command
=
dict
(
choices
=
ALL_COMMANDS
),
uri
=
dict
(
default
=
'qemu:///system'
),
uri
=
dict
(
default
=
'qemu:///system'
),
xml
=
dict
(),
xml
=
dict
(),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment