more web interface updates
[invirt/packages/invirt-remote.git] / files / usr / sbin / dispatch.sh
index 31723a3..00576dd 100755 (executable)
 
 ACTION=$(echo "$0" | awk -F'.' '{print $2}')
 MACHINE="$1"
-echo "$ACTION"
+#echo "$0" "$ACTION"
 
 case "$ACTION" in
-    reboot|list|vcpu-list|destroy|create|uptime)
+    list|vcpu-list|destroy|create|uptime)
         xm "$ACTION" "$MACHINE"
         exit 0
        ;;
+    reboot-with-cdrom)
+       xm shutdown "$MACHINE"
+       xm create sipb-database machine_name="$MACHINE" cdrom_image="$2"
+       ;;
+    reboot)
+       if [ -n "$2" ]; then
+           /usr/sbin/dispatch.reboot-with-cdrom.sh "$1" "$2" &
+       else
+           xm reboot "$MACHINE"
+       fi
+       ;;
     list-long)
        xm list --long "$MACHINE"
        ;;