# $2 and so on are user-provided, and thus sketchy. I don't think we
# need them for this script.
-ACTION=$(echo $0 | awk -F'.' '{print $2}')
+ACTION=$(echo "$0" | awk -F'.' '{print $2}')
MACHINE=$1
-echo $ACTION
+echo "$ACTION"
case "$ACTION" in
reboot|list|vcpu-list|destroy|create|uptime)
- xm $ACTION $MACHINE
+ xm "$ACTION" "$MACHINE"
exit 0
;;
*)