2 # dispatch-ACTION.sh MACHINE
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.
12 ACTION=$(echo "$0" | awk -F'.' '{print $2}')
14 MACHINE="d_$ORIGMACHINE"
17 list|vcpu-list|destroy|create|uptime|shutdown)
18 xm "$ACTION" "$MACHINE"
21 xm shutdown "$MACHINE"
22 xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$2"
26 /usr/sbin/dispatch.reboot-with-cdrom.sh "$ORIGMACHINE" "$2" &
32 xm list --long "$MACHINE"
35 echo "ERROR: Invalid Command"