merge with 0.30.213
[util-vserver.git] / scripts / vserver.stop
1 # $Id: vserver.stop 2508 2007-02-25 14:06:51Z dhozac $  --*- 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     test ! -d "$vwait_statdir" ||
41         $_RM -rf "$vwait_statdir"
42 }
43
44 vwait_statdir=
45 vwait_pid=
46 sync_fifo=
47 trap "cleanup" EXIT
48
49 OPTION_FORCE_SYNC=1
50
51 set -e
52 generateOptions   "$VSERVER_DIR"
53 set +e
54
55 vshelper.doDestroy "$VSERVER_DIR" "$S_CONTEXT"
56 initSync           "$VSERVER_DIR" "$S_CONTEXT" sync_fifo
57 prepareStop        "$VSERVER_DIR"
58
59 cd "$VSERVER_DIR"/vdir/
60 execScriptlets     "$VSERVER_DIR" "$VSERVER_NAME" pre-stop
61 cd "$VSERVER_DIR"/vdir/
62
63 test -z "$OPTION_DEFAULTTTY" || setDefaultTTY "$VSERVER_DIR"
64
65 fail=
66 initWait           "$VSERVER_DIR" "$S_CONTEXT" vwait_statdir
67 if test -n "$_IS_FAKEINIT" && \
68    $_VSERVER_INFO - FEATURE vkill; then
69     if ! vshelper.isStopSync; then
70         $_VKILL -s INT --xid "$S_CONTEXT" -- 1 || fail=1
71     fi
72 elif $_VSERVER_INFO - FEATURE migrate; then
73     "${NICE_CMD[@]}" \
74     $_VCONTEXT $SILENT_OPT --migrate --chroot --xid "$S_CONTEXT" -- \
75     "${INITCMD_STOP[@]}" || fail=1
76 else
77     "${NICE_CMD[@]}" \
78     "$_CHBIND"       "${CHBIND_OPTS[@]}" \
79     "$_EXEC_ULIMIT"  "$VSERVER_DIR/ulimits" \
80     $_CHCONTEXT_COMPAT    "${CHCONTEXT_OPTS[@]}" \
81     "$_CAPCHROOT"    "${CAPCHROOT_OPTS[@]}" "." \
82     "${INITCMD_STOP[@]}" || fail=1
83 fi
84
85 # Remove persistent so those contexts can be stopped
86 $_VATTRIBUTE --set --xid "$S_CONTEXT" --flag ~persistent 2>/dev/null || :
87 if $_VSERVER_INFO -q "$S_CONTEXT" XIDTYPE static &&
88    $_VSERVER_INFO - FEATURE vnet; then
89     $_NATTRIBUTE --set --nid "$S_CONTEXT" --flag ~persistent 2>/dev/null || :
90 fi
91
92 vshelper.doStopSync
93
94 waitForSync "$VSERVER_DIR" "$sync_fifo" "$vwait_statdir"
95
96 vshelper.doDestroy "$VSERVER_DIR" "$S_CONTEXT"
97 sendKillSequence   "$S_CONTEXT" "${INITKILL_SEQ[@]}"
98
99 ## Small hack... isVserverRunning removes stale runfiles as a sideeffect
100 ! isVserverRunning  "$VSERVER_DIR" || \
101     echo $"Vserver '$VSERVER_DIR' still running unexpectedly; please investigate it manually..." >&2
102
103 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" post-stop
104     
105 umountVserver     "$VSERVER_DIR" || :
106 disableInterfaces "$VSERVER_DIR"
107
108 saveDiskLimits    "$VSERVER_DIR"
109
110 execScriptlets    "$VSERVER_DIR" "$VSERVER_NAME" postpost-stop
111 removeCPUSET      "$VSERVER_DIR"