From 64076721e3c0b27306de92ef977a94a69131370a Mon Sep 17 00:00:00 2001 From: Greg Price Date: Sat, 21 Jun 2008 20:49:04 -0400 Subject: [PATCH] clean up sipb-xen-remote-proxy dispatch logic svn path=/trunk/packages/sipb-xen-remote-server/; revision=624 --- files/usr/sbin/sipb-xen-remote-proxy | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) 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 -- 1.7.9.5