source: trunk/packages/sipb-xen-remote-server/files/usr/sbin/sipb-xen-remote-proxy @ 659

Last change on this file since 659 was 659, checked in by price, 16 years ago

sipb-xen-remote-proxy: refactor argument parsing and passing

  • Property svn:executable set to *
File size: 620 bytes
RevLine 
[502]1#!/bin/sh
2# invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense.
[659]3
[549]4klist -s || kinit -k host/remote.mit.edu
[624]5
[620]6TYPE="${0##*-}"
[624]7case "$TYPE" in
8    control )
[659]9        MACHINE="$1"; SERVICE="$2"; shift; shift ;;
[624]10    * )
[659]11        SERVICE="$1"; shift ;;
[620]12esac
[624]13
14case "$TYPE/$SERVICE" in
15    web/listvms )
[659]16        sipb-xen-remote-listvms "$@" ;;
[625]17    control/create )
[659]18        remctl black-mesa remote "$TYPE" "$MACHINE" "$SERVICE" "$@" ;;
[625]19    control/* )
20        # Everything but create must go where the VM is already running.
[659]21        sipb-xen-remote-control "$MACHINE" "$SERVICE" "$@" ;;
[624]22    * )
[659]23        remctl black-mesa remote "$TYPE" "$SERVICE" "$@" ;;
[624]24esac
Note: See TracBrowser for help on using the repository browser.