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

Last change on this file since 1161 was 1161, checked in by broder, 16 years ago

Fix Nelson's other request - make both "list-host" and "listhost"
valid commands, and document "list-host" for parity with "list-long"

  • Property svn:executable set to *
File size: 720 bytes
Line 
1#!/bin/bash
2# invoke as sipb-xen-remote-proxy-$TYPE, with "TYPE" in the remctl sense.
3
4klist -s || kinit -k
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|control/install )
18        sipb-xen-remote-create "$SERVICE" "$MACHINE" "$@" ;;
19    control/listhost|control/list-host )
20        sipb-xen-remote-listhost "$MACHINE" "$@" ;;
21    control/* )
22        # Everything but create must go where the VM is already running.
23        sipb-xen-remote-control "$MACHINE" "$SERVICE" "$@" ;;
24    * )
25        remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;;
26esac
Note: See TracBrowser for help on using the repository browser.