2 # invirt-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"
20 destroy|shutdown|reboot)
21 xm "$ACTION" "$MACHINE"
22 /usr/sbin/invirt-update-conserver </dev/null >/dev/null 2>&1 &
26 xm list "$MACHINE" >/dev/null 2>/dev/null && echo "$MACHINE already exists" && exit 1
27 if [ "$ACTION" = "install" ]; then
28 xm create invirt-database machine_name="$ORIGMACHINE" installer_options="$(printf '%q ' "$@")"
29 elif [ -n "$1" ]; then
30 xm create invirt-database machine_name="$ORIGMACHINE" cdrom_image="$1"
32 xm create invirt-database machine_name="$ORIGMACHINE"
34 (sleep 4; /usr/sbin/invirt-update-conserver) </dev/null >/dev/null 2>&1 &
37 xm list --long "$MACHINE"
40 invirt-vnc-authtoken "$ORIGMACHINE"
43 echo "ERROR: Invalid Command"