Last change
on this file since 1165 was
1161,
checked in by broder, 16 years ago
|
Fix Nelson's other request - make both "list-host" and "listhost"
valid commands, and document "list-host" for parity with "list-long"
|
-
Property svn:executable set to
*
|
File size:
720 bytes
|
Rev | Line | |
---|
[830] | 1 | #!/bin/bash |
---|
[502] | 2 | # invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense. |
---|
[659] | 3 | |
---|
[777] | 4 | klist -s || kinit -k |
---|
[624] | 5 | |
---|
[620] | 6 | TYPE="${0##*-}" |
---|
[624] | 7 | case "$TYPE" in |
---|
| 8 | control ) |
---|
[659] | 9 | MACHINE="$1"; SERVICE="$2"; shift; shift ;; |
---|
[624] | 10 | * ) |
---|
[659] | 11 | SERVICE="$1"; shift ;; |
---|
[620] | 12 | esac |
---|
[624] | 13 | |
---|
| 14 | case "$TYPE/$SERVICE" in |
---|
| 15 | web/listvms ) |
---|
[659] | 16 | sipb-xen-remote-listvms "$@" ;; |
---|
[1088] | 17 | control/create|control/install ) |
---|
| 18 | sipb-xen-remote-create "$SERVICE" "$MACHINE" "$@" ;; |
---|
[1161] | 19 | control/listhost|control/list-host ) |
---|
[661] | 20 | sipb-xen-remote-listhost "$MACHINE" "$@" ;; |
---|
[625] | 21 | control/* ) |
---|
| 22 | # Everything but create must go where the VM is already running. |
---|
[659] | 23 | sipb-xen-remote-control "$MACHINE" "$SERVICE" "$@" ;; |
---|
[624] | 24 | * ) |
---|
[830] | 25 | remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;; |
---|
[624] | 26 | esac |
---|
Note: See
TracBrowser
for help on using the repository browser.