Change to using conserver instead of ssh
[invirt/packages/invirt-remote.git] / files / usr / sbin / sipb-xen-vmcontrol
index 0c4d0e1..4d055bb 100755 (executable)
@@ -14,9 +14,14 @@ ACTION="$2"
 MACHINE="d_$ORIGMACHINE"
 
 case "$ACTION" in
-    list|vcpu-list|destroy|uptime|shutdown)
+    list|vcpu-list|uptime)
         xm "$ACTION" "$MACHINE"
        ;;
+    destroy|shutdown)
+       xm "$ACTION" "$MACHINE"
+       rm "/etc/conserver/conf.d/$MACHINE"
+       /usr/sbin/sipb-xen-update-conserver
+       ;;
     install|create|reboot)
        ARG="$3"
        shift; shift; shift; MOREARGS="$*"
@@ -27,11 +32,15 @@ case "$ACTION" in
        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"
        else
            xm create sipb-database machine_name="$ORIGMACHINE"
        fi
+       echo "console $ORIGMACHINE {}" >"/etc/conserver/conf.d/$MACHINE"
+       /usr/sbin/sipb-xen-update-conserver
        ;;
     list-long)
        xm list --long "$MACHINE"