source: trunk/packages/invirt-remote-host/files/usr/sbin/invirt-remote @ 1630

Last change on this file since 1630 was 1630, checked in by broder, 15 years ago

Remove another reference to the no-longer-used vmboot remctl

  • Property svn:executable set to *
File size: 857 bytes
RevLine 
[657]1#!/bin/sh
[1239]2# invirt-remote TYPE SERVICE [ARGS...]
[657]3#
4# We carry out the remctl command proxied to us by the remote-control server.
5
6TYPE="$1"
7SERVICE="$2"
8shift; shift;
9
10case "$TYPE" in
11    control)
12        # $SERVICE is hostname
[1239]13        COMMAND=/usr/sbin/invirt-vmcontrol
[657]14        ;;
15    web)
16        case "$SERVICE" in
17            lvcreate|lvremove|lvrename|lvresize)
[1239]18                COMMAND=/usr/sbin/invirt-lvm
[657]19                ;;
20            listvms)
[1239]21                COMMAND=/usr/sbin/invirt-listvms
[657]22                ;;
23            info)
24                COMMAND=/usr/sbin/xm
25                ;;
[1401]26            vnccert)
27                COMMAND=/usr/bin/invirt-vnc-getcert
28                ;;
[657]29            *)
30                echo "ERROR: invalid subcommand"
[1164]31                exit 34
[657]32                ;;
33        esac
34        ;;
35    *)
36        echo "ERROR: invalid command"
[1164]37        exit 34
[657]38        ;;
39esac
40
41$COMMAND "$SERVICE" "$@"
Note: See TracBrowser for help on using the repository browser.