ccbd2e134813f488b19b2f924ea2956170b8bcab
[util-vserver.git] / scripts / vserver-wrapper
1 #! /bin/bash
2
3 # Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 #  
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; version 2 of the License.
8 #  
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #  
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18 : ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars}
19 test -e "$UTIL_VSERVER_VARS" || {
20     echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2
21     exit 1
22 }
23 . "$UTIL_VSERVER_VARS"
24
25 test -n "$MARK" || MARK=default
26 : ${LOCKFILE:=vservers-$MARK}
27 : ${NUMPARALLEL:=6}
28
29
30 if test -e /etc/init.d/functions; then
31     . /etc/init.d/functions
32     lockfile=/var/lock/subsys/$LOCKFILE
33 else
34     success() { echo .; }
35     passed()  { echo .; }
36     failure() { echo ERROR; }
37     lockfile=/var/run/$LOCKFILE
38 fi
39
40
41 function _tellResult()
42 {
43     local rc=$1
44     case "$rc" in
45         (0)     success;;
46         (2)     passed; rc=0;;
47         (*)     failure;;
48     esac
49     echo
50     return $rc
51 }
52
53 function start()
54 {
55     echo -n $"Starting vservers of type '$MARK'..."
56     $_START_VSERVERS -m "$MARK" -j "$NUMPARALLEL" --all --start
57     _tellResult $?
58     local rc=$?
59     test "$rc" -ne 0 || touch "$lockfile"
60     return $rc
61 }
62
63 function stop()
64 {
65     echo -n $"Stopping vservers of type '$MARK'..."
66     $_START_VSERVERS -m "$MARK" -j "$NUMPARALLEL" --all --stop
67     _tellResult $?
68     local rc=$?
69     $_RM -f "$lockfile"
70     return $rc
71 }
72
73 function restart()
74 {
75     stop
76     start
77 }
78
79 case "$1" in
80     start|stop|restart) $1;;
81     condrestart)
82         test -f $lockfile && restart || :
83         ;;
84     status)
85         test -f $lockfile && {
86             echo $"vservers of type '$MARK' were started"
87             exit 0
88         }
89         echo $"vservers of type '$MARK' are not started"
90         exit 1
91         ;;
92     *)
93         echo "Usage: $0 {start|stop|restart|condrestart|status}"
94         exit 2
95         ;;
96 esac