source: trunk/packages/invirt-remote-server/files/usr/sbin/invirt-remote-proxy @ 1650

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

Add a web vnccert remctl to invirt-remote-server

  • Property svn:executable set to *
File size: 766 bytes
RevLine 
[830]1#!/bin/bash
[1176]2# invoke as invirt-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 )
[1176]16        invirt-remote-listvms "$@" ;;
[1402]17    web/vnccert )
18        invirt-remote-vnccert "$@" ;;
[1088]19    control/create|control/install )
[1176]20        invirt-remote-create "$SERVICE" "$MACHINE" "$@" ;;
[1161]21    control/listhost|control/list-host )
[1176]22        invirt-remote-listhost "$MACHINE" "$@" ;;
[625]23    control/* )
24        # Everything but create must go where the VM is already running.
[1176]25        invirt-remote-control "$MACHINE" "$SERVICE" "$@" ;;
[624]26    * )
[830]27        remctl "$(invirt-getconf hosts.0.hostname)" remote "$TYPE" "$SERVICE" "$@" ;;
[624]28esac
Note: See TracBrowser for help on using the repository browser.