added Vector_zeroEnd() function
[util-vserver.git] / util-vserver / scripts / vserver.stop
1 # $Id$  --*- sh -*--
2
3 # Copyright (C) 2003 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
19 lock "$LOCKDIR"/vserver."$(echo "$VSERVER_DIR" | tr -dc a-zA-Z0-9)".startup
20
21 if ! isVserverRunning "$VSERVER_DIR" S_CONTEXT; then
22     echo $"vserver '$VSERVER_NAME' is not running; aborting..." >&2
23     test "$OPTION_DEBUG" || exec 2>/dev/null >/dev/null
24     umountVserver     "$VSERVER_DIR" || :
25     disableInterfaces "$VSERVER_DIR" || :
26     unlock
27     exit 1
28 fi
29
30 function cleanup
31 {
32     set +e
33     unlock
34     
35     test ! -p "$sync_fifo" || {
36         rm -f "$sync_fifo"
37         rmdir $(dirname "$sync_fifo")
38     }
39 }
40
41 sync_fifo=
42 trap "cleanup" EXIT
43
44 set -e
45 generateOptions   "$VSERVER_DIR"
46 set +e
47
48 vshelper.doDestroy "$VSERVER_DIR" "$S_CONTEXT"
49 initSync           "$VSERVER_DIR" sync_fifo
50
51 cd "$VSERVER_DIR"/vdir/
52 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" pre-stop
53 cd "$VSERVER_DIR"/vdir/
54
55 test -z "$OPTION_DEFAULTTTY" || setDefaultTTY "$VSERVER_DIR"
56
57 fail=
58 if test "$_IS_FAKEINIT" && \
59    $_VSERVER_INFO - FEATURE vkill && \
60    initpid=$($_VSERVER_INFO "$S_CONTEXT" INITPID 2>/dev/null); then
61     $_VKILL -s INT -- "$initpid" || fail=1
62 elif $_VSERVER_INFO - FEATURE migrate; then
63     "${NICE_CMD[@]}" \
64     ${USE_VNAMESPACE:+$_VNAMESPACE --enter "$S_CONTEXT" -- } \
65     $_VCONTEXT $SILENT_OPT --migrate --chroot --xid "$S_CONTEXT" -- \
66     "${INITCMD_STOP[@]}" || fail=1
67 else
68     "${NICE_CMD[@]}" \
69     "$_CHBIND"       "${CHBIND_OPTS[@]}" \
70     "$_EXEC_ULIMIT"  "$VSERVER_DIR/ulimits" \
71     ${USE_VNAMESPACE:+$_VNAMESPACE --enter "$S_CONTEXT"} \
72     $_CHCONTEXT_COMPAT    "${CHCONTEXT_OPTS[@]}" \
73     "$_CAPCHROOT"    "${CAPCHROOT_OPTS[@]}" "." \
74     "${INITCMD_STOP[@]}" || fail=1
75 fi
76
77 test "$fail" || waitForSync "$VSERVER_DIR" "$sync_fifo"
78
79 vshelper.doDestroy "$VSERVER_DIR" "$S_CONTEXT"
80 sendKillSequence   "$S_CONTEXT" "${INITKILL_SEQ[@]}"
81
82 ## Small hack... isVserverRunning removes stale runfiles as a sideeffect
83 ! isVserverRunning  "$VSERVER_DIR" || \
84     echo $"Vserver '$VSERVER_DIR' still running unexpectedly; please investigate it manually..." >&2
85
86 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" post-stop
87     
88 umountVserver     "$VSERVER_DIR" || :
89 disableInterfaces "$VSERVER_DIR"
90
91 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" postpost-stop