#!/bin/bash
# kvm-shell - a small interface to kvm for regular users
-# v1.0-0
# Copyright (C) 2009 Michael Kress <michael ### at === kress --- net>
+# Copyright (C) 2011 Joerg Jaspert <joerg@debian.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
-# You should have received a copy of the GNU General Public License
-#
# INSTALL:
# 1) create these entries for your users in /etc/sudoers (use visudo) :
# User_Alias KVMUSERS = vuser1,vuser2
# vuser1 vm1
# vuser2 vm1 vm2 vm3
# Description: List here which users are allowed to control which vms
-#
-# KNOWN BUGS:
-# * To update the status, select another menu item and return to the current one
-#
-# CHANGELOG:
-# v1.0-0 / 2009-12-23 / Initial release
set -e
set -u
set -E
+VERSION="2.0"
+PROGRAM="kvm-shell"
+
# configuration
CURRENTUSER=${USER:-""}
if [-z ${CURRENTUSER} ]; then