4 # Copyright (C) 2003,2004,2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
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.
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.
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.
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
24 . "$UTIL_VSERVER_VARS"
26 . "$_LIB_VSERVER_SETUP_FUNCTIONS"
27 . "$_LIB_VSERVER_BUILD_FUNCTIONS"
29 ### Some local functions
34 $"Usage: $(basename $0) -m <method> -n <name> --force <cfg-options>*
35 --rootdir <dir> --pkgbase <dir> [--] <method-args>*
38 --force ... remove/rename already existing vservers with the same
40 --keep ... do not delete generated files and directories when
41 build of vserver failed.
42 -m <method> ... use method <method>; see below for possible values
44 ... [default: $__DEFAULT_VSERVERDIR]
46 ... [default: $__DEFAULT_VSERVERPKGDIR]
48 cfg-options are: $SETUP_HELPMSG
51 legacy ... the \"old\" copy-all-from-host method, which requires the
52 old legacy vserver-legacy script; with this method the
53 cfg-options will be ignored
54 copy ... the copy-all-from-host method which uses the recent
56 apt-rpm ... -- -d <distribution>
57 ... installs the base-packages of the given distribution with
59 yum ... -- -d <distribution>
60 ... installs the base-packages of the given distribution with
62 rpm ... -- [-d <distribution>] --empty|([--force] [--nodeps] <manifest>)+
63 ... installs lists of rpm-packages
64 skeleton ... -- [<cmd> <args>*]
65 ... installs a minimal skeleton filesystem, creates the
66 configuration file and calls an optional command then
67 debootstrap ... -- -d <distribution> [-m <mirror>] [-s <script> ] [-- <debootstrap-options>*]
68 bootstraps the vserver with Debian's 'debootstrap' package
69 template ... -- (-t <tarball>)+
70 ... installs a guest using tarball(s)
72 Please report bugs to $PACKAGE_BUGREPORT"
76 function showVersion()
79 $"vserver-build $PACKAGE_VERSION -- initializes a vserver
80 This program is part of $PACKAGE_STRING
82 Copyright (C) 2003,2004,2005 Enrico Scholz
83 This program is free software; you may redistribute it under the terms of
84 the GNU General Public License. This program has absolutely no warranty."
92 declare -a default_opts=()
93 test -n "$NO_DEFAULT_OPTS" || getFileArray default_opts "$__CONFDIR/.defaults/apps/build/options" || :
95 tmp=$(getopt -o +m:n: --long keep,force,debug,help,version,rootdir:,pkgbase:,$SETUP_OPTIONS -n "$(basename $0)" -- \
96 "${default_opts[@]}" "$@") || exit 1
106 (--help) showHelp $0 ;;
107 (--version) showVersion ;;
108 (--force) OPTION_FORCE=1;;
109 (--keep) OPTION_KEEP=1;;
110 (--debug) let ++OPTION_DEBUG; set -x;;
111 (--rootdir) ROOTDIR=$2; shift;;
112 (--pkgbase) PKGCFGBASE=$2; shift;;
113 (-m) method=$2; shift;;
114 (-n) VSERVER_NAME=$2; shift;;
117 { setup_setOption2 "$1" "$2" && shift; } || \
118 panic $"vserver-build: internal error."
124 test -n "$VSERVER_NAME" ||
125 panic $"Name of vserver not specified"
127 setup_setDefaults "$VSERVER_NAME"
130 (xlegacy) exec $_VSERVER_LEGACY "$VSERVER_NAME" build "$@" ;;
131 (xapt-rpm|xcopy|xskeleton|xdebootstrap|xyum|xrpm|xtemplate)
132 . $__PKGLIBDIR/vserver-build.$method
134 (x) panic $"No build-method specified";;
135 (*) panic $"Unknown build-method '$method'";;