|
Last change
on this file since 2255 was
2255,
checked in by price, 17 years ago
|
|
invirt-remote: enumerate all the subcommands on proxy server
|
-
Property svn:executable set to
*
|
|
File size:
1020 bytes
|
| Rev | Line | |
|---|
| [830] | 1 | #!/bin/bash |
|---|
| [1176] | 2 | # invoke as invirt-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 ) |
|---|
| [2097] | 16 | invirt-remote-listvms "$@" ;; |
|---|
| [1402] | 17 | web/vnccert ) |
|---|
| [2097] | 18 | invirt-remote-vnccert "$@" ;; |
|---|
| [2188] | 19 | web/availability ) |
|---|
| 20 | invirt-remote-availability "$@" ;; |
|---|
| [2255] | 21 | web/lvcreate | web/lvremove | web/lvrename | web/lvresize ) |
|---|
| 22 | remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;; |
|---|
| [1665] | 23 | control/help ) |
|---|
| [2097] | 24 | invirt-remctl-help ;; |
|---|
| [1088] | 25 | control/create|control/install ) |
|---|
| [2097] | 26 | invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;; |
|---|
| [1161] | 27 | control/listhost|control/list-host ) |
|---|
| [2097] | 28 | invirt-remote-listhost "$MACHINE" "$@" ;; |
|---|
| [625] | 29 | control/* ) |
|---|
| 30 | # Everything but create must go where the VM is already running. |
|---|
| [2097] | 31 | invirt-remote-control "$MACHINE" "$SERVICE" "$@" ;; |
|---|
| [624] | 32 | * ) |
|---|
| [2255] | 33 | echo "ERROR: invalid subcommand" |
|---|
| 34 | exit 34 |
|---|
| 35 | ;; |
|---|
| [624] | 36 | esac |
|---|
Note: See
TracBrowser
for help on using the repository browser.