source: trunk/packages/invirt-remote/host/usr/sbin/invirt-vmcontrol @ 2113

Last change on this file since 2113 was 2113, checked in by iannucci, 15 years ago

Modified invirt-availability and invirt-vmcontrol to stat /etc/invirt/nocreate.

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1#!/bin/bash
2# invirt-vmcontrol MACHINE ACTION
3#
4# remctl should have already verified that the user is authorized to
5# control the machine.  So, we just need to execute the action requested.
6#
7# $0 and $1 come from the trusted remctl source.
8#
9# $2 and so on are user-provided, and thus sketchy.
10
11ORIGMACHINE="$1"
12ACTION="$2"
13MACHINE="d_$ORIGMACHINE"
14
15case "$ACTION" in
16    list|vcpu-list|uptime)
17        xm "$ACTION" "$MACHINE"
18        ;;
19    destroy|shutdown|reboot)
20        xm "$ACTION" "$MACHINE"
21        /usr/sbin/invirt-update-conserver </dev/null >/dev/null 2>&1 &
22        ;;
23    install|create)
24        shift; shift;
25        if [ -f "/etc/invirt/nocreate" ]; then
26                echo "Host $HOSTNAME is currently refusing VM creation." && exit 2
27        fi
28        xm list "$MACHINE" >/dev/null 2>/dev/null && echo "$MACHINE already exists" && exit 1
29        if [ "$ACTION" = "install" ]; then
30            xm create invirt-database machine_name="$ORIGMACHINE" installer_options="$(printf '%q ' "$@")"
31        elif [ -n "$1" ]; then
32            xm create invirt-database machine_name="$ORIGMACHINE" cdrom_image="$1"
33        else
34            xm create invirt-database machine_name="$ORIGMACHINE"
35        fi
36        (sleep 4; /usr/sbin/invirt-update-conserver) </dev/null >/dev/null 2>&1 &
37        ;;
38    list-long)
39        xm list --long "$MACHINE"
40        ;;
41    vnctoken)
42        invirt-vnc-authtoken "$ORIGMACHINE"
43        ;;
44    *)
45        echo "ERROR: Invalid Command"
46        exit 34
47        ;;
48esac
Note: See TracBrowser for help on using the repository browser.