0f4f9e8d204e601083624833f36449bc8ca4b156
[invirt/packages/invirt-remote.git] / files / usr / sbin / sipb-xen-remote-proxy
1 #!/bin/sh
2 # invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense.
3
4 klist -s || kinit -k host/remote.mit.edu
5
6 TYPE="${0##*-}"
7 case "$TYPE" in
8     control )
9         MACHINE="$1"; SERVICE="$2"; shift; shift ;;
10     * )
11         SERVICE="$1"; shift ;;
12 esac
13
14 case "$TYPE/$SERVICE" in
15     web/listvms )
16         sipb-xen-remote-listvms "$@" ;;
17     control/create )
18         remctl black-mesa remote "$TYPE" "$MACHINE" "$SERVICE" "$@" ;;
19     control/* )
20         # Everything but create must go where the VM is already running.
21         sipb-xen-remote-control "$MACHINE" "$SERVICE" "$@" ;;
22     * )
23         remctl black-mesa remote "$TYPE" "$SERVICE" "$@" ;;
24 esac