projects
/
invirt/packages/invirt-remote.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
don't reboot machine when create a running VM.
[invirt/packages/invirt-remote.git]
/
files
/
usr
/
sbin
/
sipb-xen-vmcontrol
diff --git
a/files/usr/sbin/sipb-xen-vmcontrol
b/files/usr/sbin/sipb-xen-vmcontrol
index
bf72dbc
..
dbe3c36
100755
(executable)
--- a/
files/usr/sbin/sipb-xen-vmcontrol
+++ b/
files/usr/sbin/sipb-xen-vmcontrol
@@
-17,8
+17,12
@@
case "$ACTION" in
list|vcpu-list|destroy|uptime|shutdown)
xm "$ACTION" "$MACHINE"
;;
list|vcpu-list|destroy|uptime|shutdown)
xm "$ACTION" "$MACHINE"
;;
- reboot|create|vmboot)
- xm destroy "$MACHINE" 2>/dev/null
+ create|reboot)
+ if [ "$ACTION" = "reboot" ]; then
+ xm destroy "$MACHINE" 2>/dev/null
+ else
+ xm list "$MACHINE" >/dev/null 2>/dev/null && echo "$MACHINE already exists" && exit 1
+ fi
if [ -n "$3" ]; then
xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$3"
else
if [ -n "$3" ]; then
xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$3"
else