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

Last change on this file since 1012 was 830, checked in by y_z, 16 years ago

use invirt config

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