added scheduler support
[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    "$OPTION_DEBUG"    || exec 2>/dev/null >/dev/null
26     test -z "$is_started"      || return 0
27     test -z "$is_mounted"      || umountVserver     "$VSERVER_DIR" || :
28     test -z "$have_interfaces" || disableInterfaces "$VSERVER_DIR" || :
29 }
30
31 is_started=
32 is_mounted=
33 have_interfaces=
34
35 trap "cleanup" EXIT
36
37 set -e
38 generateOptions  "$VSERVER_DIR"
39 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" prepre-start
40 enableInterfaces "$VSERVER_DIR" && have_interfaces=1
41
42 mountVserver "$VSERVER_DIR"     && is_mounted=1
43 prepareInit  "$VSERVER_DIR"
44
45 cd "$VSERVER_DIR"/vdir/
46 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" pre-start
47
48 cd "$VSERVER_DIR"/vdir/
49
50 if $_VSERVER_INFO - FEATURE migrate; then
51     $_CHBIND     "${CHBIND_OPTS[@]}" -- \
52     $_VCONTEXT   --create "${OPTS_VCONTEXT_CREATE[@]}" -- \
53     ${USE_VNAMESPACE:+$_VNAMESPACE --set -- } \
54     $_VLIMIT     --dir "$VSERVER_DIR"/rlimits --missingok -- \
55     $_VSCHED     --xid self "${OPTS_VSCHED[@]}" -- \
56     $_VUNAME     --xid self --dir "$VSERVER_DIR"/uts     --missingok -- \
57     "${VSERVER_EXTRA_CMDS[@]}" \
58     $_VUNAME     --xid self --set -t context="$VSERVER_DIR" -- \
59     $_VATTRIBUTE --set "${OPTS_VATTRIBUTE[@]}" -- \
60     $_SAVE_CTXINFO "$VSERVER_DIR" \
61     $_VCONTEXT   --migrate-self --endsetup --chroot $SILENT_OPT "${OPTS_VCONTEXT_MIGRATE[@]}" -- \
62     "${INITCMD_START[@]}"
63 else
64     ${NICE_CMD[@]} \
65     $_CHBIND           "${CHBIND_OPTS[@]}" \
66     $_EXEC_ULIMIT      "$VSERVER_DIR/ulimits" \
67     $_CHCONTEXT_COMPAT "${CHCONTEXT_OPTS[@]}" "${CHCONTEXT_INIT_OPTS[@]}" \
68     $_SAVE_CTXINFO     "$VSERVER_DIR" \
69     $_CLEARENV \
70     $_CAPCHROOT        "${CAPCHROOT_OPTS[@]}" . \
71     "${INITCMD_START[@]}"
72 fi
73
74 "${INITCMD_START_SYNC[@]}"
75
76 execScriptlets   "$VSERVER_DIR" "$VSERVER_NAME" post-start
77 is_started=1