From: Greg Price Date: Sun, 22 Jun 2008 00:49:04 +0000 (-0400) Subject: clean up sipb-xen-remote-proxy dispatch logic X-Git-Tag: sipb-xen-remote-server/0.2~9 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-remote.git/commitdiff_plain/64076721e3c0b27306de92ef977a94a69131370a?hp=1b987a7debd0f192b696c4befb607293b20560ab clean up sipb-xen-remote-proxy dispatch logic svn path=/trunk/packages/sipb-xen-remote-server/; revision=624 --- diff --git a/files/usr/sbin/sipb-xen-remote-proxy b/files/usr/sbin/sipb-xen-remote-proxy index b230166..cb81f08 100755 --- a/files/usr/sbin/sipb-xen-remote-proxy +++ b/files/usr/sbin/sipb-xen-remote-proxy @@ -1,10 +1,18 @@ #!/bin/sh # invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense. klist -s || kinit -k host/remote.mit.edu + TYPE="${0##*-}" -SERVICE="$1" -#echo remctl black-mesa remote "$TYPE" "$@" -case "$SERVICE" in - listvms ) shift; sipb-xen-remote-listvms "$@" ;; - * ) remctl black-mesa remote "$TYPE" "$@" ;; +case "$TYPE" in + control ) + SERVICE="$2" ;; + * ) + SERVICE="$1" ;; +esac + +case "$TYPE/$SERVICE" in + web/listvms ) + shift; sipb-xen-remote-listvms "$@" ;; + * ) + remctl black-mesa remote "$TYPE" "$@" ;; esac