Last change
on this file since 155 was
146,
checked in by tabbott, 17 years ago
|
1) reworking of lvm stuff into a single python script rather than a pile of shell scripts
2) changing naming for database VMs to always start with d_
|
-
Property svn:executable set to
*
|
File size:
914 bytes
|
Rev | Line | |
---|
[121] | 1 | #!/bin/sh |
---|
| 2 | # dispatch-ACTION.sh MACHINE |
---|
| 3 | # |
---|
| 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. |
---|
| 6 | # |
---|
| 7 | # $0 and $1 come from the trusted remctl source. |
---|
| 8 | # |
---|
| 9 | # $2 and so on are user-provided, and thus sketchy. I don't think we |
---|
| 10 | # need them for this script. |
---|
| 11 | |
---|
| 12 | ACTION=$(echo "$0" | awk -F'.' '{print $2}') |
---|
[146] | 13 | ORIGMACHINE="$1" |
---|
| 14 | MACHINE="d_$ORIGMACHINE" |
---|
[121] | 15 | |
---|
| 16 | case "$ACTION" in |
---|
[141] | 17 | list|vcpu-list|destroy|create|uptime|shutdown) |
---|
[121] | 18 | xm "$ACTION" "$MACHINE" |
---|
| 19 | ;; |
---|
[127] | 20 | reboot-with-cdrom) |
---|
| 21 | xm shutdown "$MACHINE" |
---|
[146] | 22 | xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$2" |
---|
[127] | 23 | ;; |
---|
| 24 | reboot) |
---|
| 25 | if [ -n "$2" ]; then |
---|
[146] | 26 | /usr/sbin/dispatch.reboot-with-cdrom.sh "$ORIGMACHINE" "$2" & |
---|
[127] | 27 | else |
---|
| 28 | xm reboot "$MACHINE" |
---|
| 29 | fi |
---|
| 30 | ;; |
---|
[121] | 31 | list-long) |
---|
| 32 | xm list --long "$MACHINE" |
---|
| 33 | ;; |
---|
| 34 | *) |
---|
| 35 | echo "ERROR: Invalid Command" |
---|
| 36 | exit 1 |
---|
| 37 | ;; |
---|
| 38 | esac |
---|
Note: See
TracBrowser
for help on using the repository browser.