fixed call of vshelper.isEnabled
[util-vserver.git] / util-vserver / scripts / vserver.start
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"; then
19     echo $"vserver '$VSERVER_NAME' already running; aborting..." >&2
20     exit 1
21 fi
22
23 function cleanup()
24 {
25     test -z "$is_started"      || return 0
26
27     if test "$is_configured" -a -z "$is_executed"; then
28         warning $"
29 An error occured while executing the vserver startup sequence; when
30 there are no other messages, it is very likely that the init-script
31 (${INITCMD_START[@]}) failed.
32
33 Common causes are:
34 * /etc/rc.d/rc on Fedora Core 1 and RH9 fails always; the 'apt-rpm' build
35   method knows how to deal with this, but on existing installations,
36   appending 'true' to this file will help."
37     fi
38
39     if test "$is_executed"; then
40         warning $"
41 An error occured after executing the vserver startup sequence. This
42 means that some processes may exist in the created context and the
43 manual execution of
44
45   $_VSERVER '$VSERVER_NAME' stop
46
47 is recommended to fix this."
48     else
49         warning $"
50
51 Failed to start vserver '$VSERVER_NAME'"
52     fi
53     
54     test    "$OPTION_DEBUG"    || exec 2>/dev/null >/dev/null
55     test -z "$is_mounted"      || umountVserver     "$VSERVER_DIR" || :
56     test -z "$have_interfaces" || disableInterfaces "$VSERVER_DIR" || :
57 }
58
59 is_configured=
60 is_executed=
61 is_started=
62 is_mounted=
63 is_vshelper_init=
64 have_interfaces=
65
66 set -e
67 trap "cleanup" EXIT
68
69 vshelper.doSanityCheck
70
71 generateOptions  "$VSERVER_DIR"
72 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" prepre-start
73 enableInterfaces "$VSERVER_DIR" && have_interfaces=1
74
75 mountVserver "$VSERVER_DIR"     && is_mounted=1
76 prepareInit  "$VSERVER_DIR"
77
78 cd "$VSERVER_DIR"/vdir/
79 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" pre-start
80
81 cd "$VSERVER_DIR"/vdir/
82
83 is_configured=1
84 if $_VSERVER_INFO - FEATURE migrate; then
85     $_CHBIND     "${CHBIND_OPTS[@]}" -- \
86     $_VCONTEXT   --create "${OPTS_VCONTEXT_CREATE[@]}" -- \
87     ${USE_VNAMESPACE:+$_VNAMESPACE --set -- } \
88     $_VLIMIT     --dir "$VSERVER_DIR"/rlimits --missingok -- \
89     $_VSCHED     --xid self "${OPTS_VSCHED[@]}" -- \
90     $_VUNAME     --xid self --dir "$VSERVER_DIR"/uts     --missingok -- \
91     "${VSERVER_EXTRA_CMDS[@]}" \
92     $_VUNAME     --xid self --set -t context="$VSERVER_DIR" -- \
93     $_VATTRIBUTE --set "${OPTS_VATTRIBUTE[@]}" -- \
94     $_SAVE_CTXINFO "$VSERVER_DIR" \
95     $_VCONTEXT   --migrate-self --endsetup --chroot $SILENT_OPT "${OPTS_VCONTEXT_MIGRATE[@]}" -- \
96     "${INITCMD_START[@]}"
97 else
98     ${NICE_CMD[@]} \
99     $_CHBIND           "${CHBIND_OPTS[@]}" \
100     $_EXEC_ULIMIT      "$VSERVER_DIR/ulimits" \
101     $_CHCONTEXT_COMPAT "${CHCONTEXT_OPTS[@]}" "${CHCONTEXT_INIT_OPTS[@]}" \
102     $_SAVE_CTXINFO     "$VSERVER_DIR" \
103     $_CLEARENV \
104     $_CAPCHROOT        "${CAPCHROOT_OPTS[@]}" . \
105     "${INITCMD_START[@]}"
106 fi
107 is_executed=1
108
109 "${INITCMD_START_SYNC[@]}"
110
111 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" post-start
112
113 is_vshelper_init=1
114 ! vshelper.isEnabled "" "$VSERVER_DIR" || vshelper.doInit "$VSERVER_DIR"
115
116 is_started=1