Fix sipb-xen-vmcontrol to know about the new magic error code
[invirt/packages/invirt-remote.git] / files / usr / sbin / sipb-xen-vmcontrol
index 3bbf63e..0c20109 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 # sipb-xen-vmcontrol MACHINE ACTION
 #
 # remctl should have already verified that the user is authorized to
@@ -22,19 +22,16 @@ case "$ACTION" in
        /usr/sbin/sipb-xen-update-conserver </dev/null >/dev/null 2>&1 &
        ;;
     install|create|reboot)
-       ARG="$3"
-       shift; shift; shift; MOREARGS="$*"
+       shift; shift;
        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 [ "$ACTION" = "install" ]; then
-           xm create sipb-database machine_name="$ORIGMACHINE" installer="$ARG" installer_options="$MOREARGS"
-#      elif [ "$ACTION" = "copy" ]; then
-#           sipb-xen-duplicate ...etc...
-       elif [ -n "$ARG" ]; then
-           xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$ARG"
+           xm create sipb-database machine_name="$ORIGMACHINE" installer_options="$(printf '%q ' "$@")"
+       elif [ -n "$1" ]; then
+           xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$1"
        else
            xm create sipb-database machine_name="$ORIGMACHINE"
        fi
@@ -45,6 +42,6 @@ case "$ACTION" in
        ;;
     *)
         echo "ERROR: Invalid Command"
-        exit 1
+        exit 34
         ;;
 esac