2 # sipb-xen-vmcontrol MACHINE ACTION
4 # remctl should have already verified that the user is authorized to
5 # control the machine. So, we just need to execute the action requested.
7 # $0 and $1 come from the trusted remctl source.
9 # $2 and so on are user-provided, and thus sketchy. I don't think we
10 # need them for this script.
14 MACHINE="d_$ORIGMACHINE"
17 list|vcpu-list|uptime)
18 xm "$ACTION" "$MACHINE"
21 xm "$ACTION" "$MACHINE"
22 /usr/sbin/sipb-xen-update-conserver </dev/null >/dev/null 2>&1 &
24 install|create|reboot)
26 shift; shift; shift; MOREARGS="$*"
27 if [ "$ACTION" = "reboot" ]; then
28 xm destroy "$MACHINE" 2>/dev/null
30 xm list "$MACHINE" >/dev/null 2>/dev/null && echo "$MACHINE already exists" && exit 1
32 if [ "$ACTION" = "install" ]; then
33 xm create sipb-database machine_name="$ORIGMACHINE" installer="$ARG" installer_options="$MOREARGS"
34 # elif [ "$ACTION" = "copy" ]; then
35 # sipb-xen-duplicate ...etc...
36 elif [ -n "$ARG" ]; then
37 xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$ARG"
39 xm create sipb-database machine_name="$ORIGMACHINE"
41 (sleep 4; /usr/sbin/sipb-xen-update-conserver) </dev/null >/dev/null 2>&1 &
44 xm list --long "$MACHINE"
47 echo "ERROR: Invalid Command"