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