File: start-vservers

package info (click to toggle)
util-vserver 0.30.204-5sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,452 kB
  • ctags: 2,353
  • sloc: sh: 28,471; ansic: 15,138; xml: 1,334; cpp: 938; makefile: 334; perl: 85
file content (180 lines) | stat: -rwxr-xr-x 4,673 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#! /bin/bash

# Copyright (C) 2004 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
#  
# 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
# the Free Software Foundation; version 2 of the License.
#  
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# 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
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

# Usage: start-vservers [-c <CFGDIR>] [-m <MARK>] [-j <NUM>] [--start|--stop|--status|--condrestart|--restart] [--test] [--all] [--debug] -- <name>+

: ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars}
test -e "$UTIL_VSERVER_VARS" || {
    echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2
    exit 1
}
. "$UTIL_VSERVER_VARS"
. "$_LIB_FUNCTIONS"

### Some local functions

function showHelp()
{
    echo \
$"Usage: $(basename $0) [-c <CFGDIR>] [-m <MARK>] [-j <NUM] [--test]
             [--start|--stop] [--all] -- <name>+

Please report bugs to $PACKAGE_BUGREPORT"
    exit 0
}


function showVersion()
{
    echo \
$"start-vserver $PACKAGE_VERSION -- starts/stops a bunch of vservers
This program is part of $PACKAGE_STRING

Copyright (C) 2004 Enrico Scholz
This program is free software; you may redistribute it under the terms of
the GNU General Public License.  This program has absolutely no warranty."
    exit 0
}

function verifyVserver()
{
    true
}

###

set +e


tmp=$(getopt -o c:j:m: --long debug,help,version,start,stop,test,all -n "$0" -- "$@") || exit 1
eval set -- "$tmp"

declare -r TAB=$(echo -en "\t")
OPTION_MARK=
OPTION_ALL=
OPTION_PARALLEL=99
OPTION_DEBUG=
NOOPTION_DEBUG=1

case "`basename $0`" in
    start-*)	OPTION_FLAVOR=start;;
    stop-*)	OPTION_FLAVOR=stop;;
    *)		OPTION_FLAVOR=;;
esac

while true; do
    case "$1" in
	--help)    	showHelp    $0 ;;
	--version) 	showVersion $0 ;;
	-c)		CONFDIR=$2;     shift;;
	-m)		OPTION_MARK=$2; shift;;
	-j)		OPTION_PARALLEL=$2; shift;;
	--start)	OPTION_FLAVOR=start;;
	--stop)		OPTION_FLAVOR=stop;;
	--all)		OPTION_ALL=1;;
	--debug)	OPTION_DEBUG=1; NOOPTION_DEBUG=; set -x;;
	--)	   	shift; break;;
	*)	   	echo $"$0: internal error; arg=='$1'" >&2; exit 1;;
    esac
    shift
done

test -n "$OPTION_FLAVOR" || {
    echo "$0: unknown invocation method; aborting..." >&2
    exit 1
}

vservers=( "$@" )
test -z  "$OPTION_ALL" || getAllVservers vservers

orig_vservers=$vservers
i=${#vservers[*]}

while test $i -gt 0; do
    let --i
    d=$CONFDIR/${vservers[$i]}/apps/init
    f=$d/mark
    { test -n "$OPTION_MARK" -a -r "$f" && grep -qx "$OPTION_MARK" "$f"; } || \
    { test -z "$OPTION_MARK" && test ! -e "$f"; } || \
    unset vservers[$i]
done

makedir=$($_MKTEMPDIR /tmp/vserver-init.XXXXXX)
okfile=$($_MKTEMP     /tmp/vserver-init.XXXXXX)
passedfile=$($_MKTEMP /tmp/vserver-init.XXXXXX)
trap "$_RM -rf $makedir $resultfile $passedfile" EXIT

test_cmd=false
case "$OPTION_FLAVOR" in
    start)	test_cmd="${_VSERVER}   --silent '\$*' status";;
    stop)	test_cmd="! ${_VSERVER} --silent '\$*' status";;
esac

{
    cat <<EOF
.%.stamp:
${TAB}$test_cmd || { \
${TAB}echo -n '.' >>$passedfile ; \
${TAB}$_VSERVER --defaulttty --sync ${OPTION_DEBUG:+--debug} "\$*" ${OPTION_FLAVOR}; }
${TAB}echo -n '.' >>$okfile
${TAB}@touch "\$@"
EOF

    echo -ne "all:\t"
    for i in "${vservers[@]}"; do
	echo -n ".$i.stamp "
    done
    echo
} >$makedir/Makefile

for i in "${vservers[@]}"; do
    d=$CONFDIR/$i/apps/init
    echo "$i"
    test -e "$d"/depends || continue
    cat "$d"/depends
done | sort -u | while read vserver; do
    d=$CONFDIR/$vserver/apps/init

    case "$OPTION_FLAVOR" in
	start)
	    if test -e "$d"/depends; then
		echo -ne ".$vserver.stamp:\t"
		cat "$d"/depends | while read dep; do
		    verifyVserver "$dep"
		    echo -n ".$dep.stamp "
		done
		echo
	    fi >>$makedir/Makefile
	    ;;
	stop)
	    if test -e "$d"/depends; then
		cat "$d"/depends | while read dep; do
		    verifyVserver "$dep"
		    echo -ne ".$dep.stamp:\t.$vserver.stamp"
		done
		echo
	    fi >>$makedir/Makefile
    esac
done

#cat $makedir/Makefile
make -k ${NOOPTION_DEBUG:+-s} ${OPTION_PARALLEL:+-j$OPTION_PARALLEL} -C $makedir

test  -s "$passedfile"           || exit 0
test  -s "$okfile"               || exit 1
$_CMP -s "$passedfile" "$okfile" || exit 2
exit 0