added Vector_zeroEnd() function
[util-vserver.git] / util-vserver / scripts / vserver-build
1 #! /bin/bash
2 # $Id$
3
4 # Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
5 #  
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; version 2 of the License.
9 #  
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #  
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 : ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars}
20 test -e "$UTIL_VSERVER_VARS" || {
21     echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2
22     exit 1
23 }
24 . "$UTIL_VSERVER_VARS"
25 . "$_LIB_FUNCTIONS"
26 . "$_LIB_VSERVER_SETUP_FUNCTIONS"
27 . "$_LIB_VSERVER_BUILD_FUNCTIONS"
28
29 ### Some local functions
30
31 function showHelp()
32 {
33     echo \
34 $"Usage: $(basename $0) -m <method> -n <name> --force <cfg-options>*
35     --rootdir <dir> --pkgcfgbase <dir> [--] <method-args>*
36
37 Options:
38     --force     ...  remove/rename already existing vservers with the same name
39     -m <method> ...  use method <method>; see below for possible values
40     --rootdir <dir>
41                 ...  [default: $DEFAULT_VSERVERDIR]
42     --pkgcfgbase <dir>
43                 ...  [default: $DEFAULT_VSERVERPKGDIR]
44       
45 cfg-options are: $SETUP_HELPMSG
46
47 Possible methods are:
48     legacy      ...  the \"old\" copy-all-from-host method, which requires the
49                      old legacy  vserver-legacy script;  with  this method the
50                      cfg-options will be ignored
51     copy        ...  the copy-all-from-host method which uses the recent
52                      configuration scheme
53     apt-rpm ... -- -d <distribution>
54                 ...  installs the base-packages of the given distribution with
55                      help of 'vapt-get'
56     skeleton ... -- [<cmd> <args>*]
57                 ...  installs a minimal skeleton filesystem, creates the
58                      configuration file and calls an optional command then
59     debootstrap ... -- -d <distribution> [-m <mirror>]
60                      bootstraps the vserver with Debian's 'debootstrap' package
61
62 Please report bugs to $PACKAGE_BUGREPORT"
63     exit 0
64 }
65
66 function showVersion()
67 {
68     echo \
69 $"vserver-build $PACKAGE_VERSION -- initializes a vserver
70 This program is part of $PACKAGE_STRING
71
72 Copyright (C) 2003 Enrico Scholz
73 This program is free software; you may redistribute it under the terms of
74 the GNU General Public License.  This program has absolutely no warranty."
75     exit 0
76 }
77
78 ### main starts here
79
80 set -e
81
82 declare -a default_opts=()
83 test "$NO_DEFAULT_OPTS" || getFileArray default_opts "$CONFDIR/.defaults/apps/build/options" || :
84
85 tmp=$(getopt -o +m:n: --long force,debug,help,version,rootdir:,pkgbase:,$SETUP_OPTIONS -n "$(basename $0)" -- \
86         "${default_opts[@]}" "$@") || exit 1
87 eval set -- "$tmp"
88
89 VSERVER_NAME=
90 OPTION_FORCE=
91
92 while true; do
93     case "$1" in
94         (--help)    showHelp $0 ;;
95         (--version) showVersion ;;
96         (--force)   OPTION_FORCE=1;;
97         (--debug)   set -x;;
98         (--rootdir) ROOTDIR=$2;      shift;;
99         (--pkgbase) PKGCFGBASE=$2;   shift;;
100         (-m)        method=$2;       shift;;
101         (-n)        VSERVER_NAME=$2; shift;;
102         (--)        shift; break;;
103         (*)
104             { setup_setOption2 "$1" "$2" && shift; } || \
105             { echo $"vserver-build: internal error."; exit 1; } >&2
106             ;;
107     esac
108     shift
109 done
110
111 test "$VSERVER_NAME" || {
112     echo $"Name of vserver not specified"
113     exit 1
114 } >&2
115
116 setup_setDefaults "$VSERVER_NAME"
117
118 case x"$method" in
119     (xlegacy)   exec $_VSERVER_LEGACY "$VSERVER_NAME" build "$@" ;;
120     (xapt-rpm|xcopy|xskeleton|xdebootstrap)
121                 . $PKGLIBDIR/vserver-build.$method
122                 ;;
123     (x)         echo $"No build-method specified" >&2
124                 exit 1
125                 ;;
126     (*)         echo $"Unknown build-method '$method'" >&2
127                 exit 1
128                 ;;
129 esac