clean up sipb-xen-remote-proxy dispatch logic
authorGreg Price <price@mit.edu>
Sun, 22 Jun 2008 00:49:04 +0000 (20:49 -0400)
committerGreg Price <price@mit.edu>
Sun, 22 Jun 2008 00:49:04 +0000 (20:49 -0400)
svn path=/trunk/packages/sipb-xen-remote-server/; revision=624

files/usr/sbin/sipb-xen-remote-proxy

index b230166..cb81f08 100755 (executable)
@@ -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
 #!/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##*-}"
 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
 esac