use $(LIBENSCVECTOR) instead of libensc_vector.a
[util-vserver.git] / util-vserver / scripts / vserver-build
1 #! /bin/bash
2 # $Id$
3
4 # Copyright (C) 2003,2004,2005 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> --pkgbase <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     --pkgbase <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     yum     ... -- -d <distribution>
57                 ...  installs the base-packages of the given distribution with
58                      help of 'vyum'
59     rpm     ... -- [-d <distribution>] --empty|([--force] [--nodeps] <manifest>)+
60                 ...  installs lists of rpm-packages
61     skeleton ... -- [<cmd> <args>*]
62                 ...  installs a minimal skeleton filesystem, creates the
63                      configuration file and calls an optional command then
64     debootstrap ... -- -d <distribution> [-m <mirror>] [-- <debootstrap-options>*]
65                      bootstraps the vserver with Debian's 'debootstrap' package
66
67 Please report bugs to $PACKAGE_BUGREPORT"
68     exit 0
69 }
70
71 function showVersion()
72 {
73     echo \
74 $"vserver-build $PACKAGE_VERSION -- initializes a vserver
75 This program is part of $PACKAGE_STRING
76
77 Copyright (C) 2003,2004,2005 Enrico Scholz
78 This program is free software; you may redistribute it under the terms of
79 the GNU General Public License.  This program has absolutely no warranty."
80     exit 0
81 }
82
83 ### main starts here
84
85 set -e
86
87 declare -a default_opts=()
88 test -n "$NO_DEFAULT_OPTS" || getFileArray default_opts "$__CONFDIR/.defaults/apps/build/options" || :
89
90 tmp=$(getopt -o +m:n: --long force,debug,help,version,rootdir:,pkgbase:,$SETUP_OPTIONS -n "$(basename $0)" -- \
91         "${default_opts[@]}" "$@") || exit 1
92 eval set -- "$tmp"
93
94 VSERVER_NAME=
95 OPTION_FORCE=
96 OPTION_DEBUG=0
97
98 while true; do
99     case "$1" in
100         (--help)    showHelp $0 ;;
101         (--version) showVersion ;;
102         (--force)   OPTION_FORCE=1;;
103         (--debug)   let ++OPTION_DEBUG;  set -x;;
104         (--rootdir) ROOTDIR=$2;      shift;;
105         (--pkgbase) PKGCFGBASE=$2;   shift;;
106         (-m)        method=$2;       shift;;
107         (-n)        VSERVER_NAME=$2; shift;;
108         (--)        shift; break;;
109         (*)
110             { setup_setOption2 "$1" "$2" && shift; } || \
111               panic $"vserver-build: internal error."
112             ;;
113     esac
114     shift
115 done
116
117 test -n "$VSERVER_NAME" ||
118     panic $"Name of vserver not specified"
119
120 setup_setDefaults "$VSERVER_NAME"
121
122 case x"$method" in
123     (xlegacy)   exec $_VSERVER_LEGACY "$VSERVER_NAME" build "$@" ;;
124     (xapt-rpm|xcopy|xskeleton|xdebootstrap|xyum|xrpm)
125                 . $__PKGLIBDIR/vserver-build.$method
126                 ;;
127     (x)         panic $"No build-method specified";;
128     (*)         panic $"Unknown build-method '$method'";;
129 esac