basic 'vserver ... start|stop' function should work now...
[util-vserver.git] / util-vserver / scripts / vserver
1 #! /bin/bash
2 # $Id$
3
4 # Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
5 #  
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
9 #  
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #  
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 : ${UTIL_VSERVER_VARS:=$(dirname $0)/util-vserver-vars}
20 test -e "$UTIL_VSERVER_VARS" || {
21     echo "Can not find util-vserver installation; aborting..."
22     exit 1
23 }
24 . "$UTIL_VSERVER_VARS"
25 . "$_LIB_FUNCTIONS"
26
27 vserver=$1
28 cmd=$2
29
30 case "$vserver" in
31     ./*) VSERVER_DIR=`pwd`/$vserver;;
32     /*)  VSERVER_DIR=$vserver;;
33     *)   VSERVER_DIR=$CONFDIR/$vserver;;
34 esac
35
36 test -d "$VSERVER_DIR" || {
37     echo "Can not find vserver-setup"
38     exit 1
39 }
40
41 if test -e "$VSERVER_DIR"/name; then
42     read VSERVER_NAME <"$VSERVER_DIR"/name
43 else
44     VSERVER_NAME=$(basename "$VSERVER_DIR")
45 fi
46
47 . $PKGLIBDIR/vserver.functions
48 case "$2" in
49     start|stop)
50         . $PKGLIBDIR/vserver.$2
51         ;;
52 esac