don't reboot machine when create a running VM.
[invirt/packages/invirt-remote.git] / files / usr / sbin / sipb-xen-vmcontrol
index bf72dbc..dbe3c36 100755 (executable)
@@ -17,8 +17,12 @@ case "$ACTION" in
     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