Last change
on this file since 1233 was
1167,
checked in by broder, 16 years ago
|
Fix sipb-xen-vmcontrol to know about the new magic error code
|
-
Property svn:executable set to
*
|
File size:
1.3 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | # sipb-xen-vmcontrol MACHINE ACTION |
---|
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 | ORIGMACHINE="$1" |
---|
13 | ACTION="$2" |
---|
14 | MACHINE="d_$ORIGMACHINE" |
---|
15 | |
---|
16 | case "$ACTION" in |
---|
17 | list|vcpu-list|uptime) |
---|
18 | xm "$ACTION" "$MACHINE" |
---|
19 | ;; |
---|
20 | destroy|shutdown) |
---|
21 | xm "$ACTION" "$MACHINE" |
---|
22 | /usr/sbin/sipb-xen-update-conserver </dev/null >/dev/null 2>&1 & |
---|
23 | ;; |
---|
24 | install|create|reboot) |
---|
25 | shift; shift; |
---|
26 | if [ "$ACTION" = "reboot" ]; then |
---|
27 | xm destroy "$MACHINE" 2>/dev/null |
---|
28 | else |
---|
29 | xm list "$MACHINE" >/dev/null 2>/dev/null && echo "$MACHINE already exists" && exit 1 |
---|
30 | fi |
---|
31 | if [ "$ACTION" = "install" ]; then |
---|
32 | xm create sipb-database machine_name="$ORIGMACHINE" installer_options="$(printf '%q ' "$@")" |
---|
33 | elif [ -n "$1" ]; then |
---|
34 | xm create sipb-database machine_name="$ORIGMACHINE" cdrom_image="$1" |
---|
35 | else |
---|
36 | xm create sipb-database machine_name="$ORIGMACHINE" |
---|
37 | fi |
---|
38 | (sleep 4; /usr/sbin/sipb-xen-update-conserver) </dev/null >/dev/null 2>&1 & |
---|
39 | ;; |
---|
40 | list-long) |
---|
41 | xm list --long "$MACHINE" |
---|
42 | ;; |
---|
43 | *) |
---|
44 | echo "ERROR: Invalid Command" |
---|
45 | exit 34 |
---|
46 | ;; |
---|
47 | esac |
---|
Note: See
TracBrowser
for help on using the repository browser.