use $(LIBENSCVECTOR) instead of libensc_vector.a
[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."$($_VSERVER_INFO "$VSERVER_DIR" CANONIFY)".startup
20
21 if ! isVserverRunning "$VSERVER_DIR" S_CONTEXT; then
22     warning $"vserver '$VSERVER_NAME' is not running" >&2
23     test -n "$OPTION_DEBUG" || exec 2>/dev/null >/dev/null
24     umountVserver     "$VSERVER_DIR" || :
25     disableInterfaces "$VSERVER_DIR" || :
26     unlock
27     exit 0
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 prepareStop "$VSERVER_DIR"
51
52 cd "$VSERVER_DIR"/vdir/
53 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" pre-stop
54 cd "$VSERVER_DIR"/vdir/
55
56 test -z "$OPTION_DEFAULTTTY" || setDefaultTTY "$VSERVER_DIR"
57
58 fail=
59 if test -n "$_IS_FAKEINIT" && \
60    $_VSERVER_INFO - FEATURE vkill && \
61    initpid=$($_VSERVER_INFO "$S_CONTEXT" INITPID 2>/dev/null); then
62     $_VKILL -s INT --xid "$S_CONTEXT" -- 1 "$initpid" || fail=1
63     ## HACK: remove the 'initpid' stuff above when PID virtualization
64     ## is implemented
65 elif $_VSERVER_INFO - FEATURE migrate; then
66     "${NICE_CMD[@]}" \
67     ${USE_VNAMESPACE:+$_VNAMESPACE --enter "$S_CONTEXT" -- } \
68     $_VCONTEXT $SILENT_OPT --migrate --chroot --xid "$S_CONTEXT" -- \
69     "${INITCMD_STOP[@]}" || fail=1
70 else
71     "${NICE_CMD[@]}" \
72     "$_CHBIND"       "${CHBIND_OPTS[@]}" \
73     "$_EXEC_ULIMIT"  "$VSERVER_DIR/ulimits" \
74     ${USE_VNAMESPACE:+$_VNAMESPACE --enter "$S_CONTEXT"} \
75     $_CHCONTEXT_COMPAT    "${CHCONTEXT_OPTS[@]}" \
76     "$_CAPCHROOT"    "${CAPCHROOT_OPTS[@]}" "." \
77     "${INITCMD_STOP[@]}" || fail=1
78 fi
79
80 test -n "$fail" || waitForSync "$VSERVER_DIR" "$sync_fifo"
81
82 vshelper.doDestroy "$VSERVER_DIR" "$S_CONTEXT"
83 sendKillSequence   "$S_CONTEXT" "${INITKILL_SEQ[@]}"
84
85 ## Small hack... isVserverRunning removes stale runfiles as a sideeffect
86 ! isVserverRunning  "$VSERVER_DIR" || \
87     echo $"Vserver '$VSERVER_DIR' still running unexpectedly; please investigate it manually..." >&2
88
89 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" post-stop
90     
91 umountVserver     "$VSERVER_DIR" || :
92 disableInterfaces "$VSERVER_DIR"
93
94 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" postpost-stop