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

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

start load-balancing over hosts

We're now a replicated service. Woohoo.
Clearly this means we're just as mature and reliable as scripts...

  • Property svn:executable set to *
File size: 599 bytes
Line 
1#!/bin/sh
2# invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense.
3
4klist -s || kinit -k host/remote.mit.edu
5
6TYPE="${0##*-}"
7case "$TYPE" in
8    control )
9        MACHINE="$1"; SERVICE="$2"; shift; shift ;;
10    * )
11        SERVICE="$1"; shift ;;
12esac
13
14case "$TYPE/$SERVICE" in
15    web/listvms )
16        sipb-xen-remote-listvms "$@" ;;
17    control/create )
18        sipb-xen-remote-create "$MACHINE" "$@" ;;
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" "$@" ;;
24esac
Note: See TracBrowser for help on using the repository browser.