added skeleton support
[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; aborting..."
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
60 Please report bugs to $PACKAGE_BUGREPORT"
61     exit 0
62 }
63
64 function showVersion()
65 {
66     echo \
67 $"vserver-build $PACKAGE_VERSION -- initializes a vserver
68 This program is part of $PACKAGE_STRING
69
70 Copyright (C) 2003 Enrico Scholz
71 This program is free software; you may redistribute it under the terms of
72 the GNU General Public License.  This program has absolutely no warranty."
73     exit 0
74 }
75
76 ### main starts here
77
78 set -e
79
80 declare -a default_opts=()
81 test "$NO_DEFAULT_OPTS" || getFileArray default_opts "$CONFDIR/.defaults/apps/build/options"
82
83 tmp=$(getopt -o +m:n: --long force,debug,help,version,rootdir:,pkgbase:,$SETUP_OPTIONS -n "$(basename $0)" -- \
84         "${default_opts[@]}" "$@") || exit 1
85 eval set -- "$tmp"
86
87 VSERVER_NAME=
88 OPTION_FORCE=
89
90 while true; do
91     case "$1" in
92         --help)    showHelp $0 ;;
93         --version) showVersion ;;
94         --force)   OPTION_FORCE=1;;
95         --debug)   set -x;;
96         --rootdir) ROOTDIR=$2;      shift;;
97         --pkgbase) PKGCFGBASE=$2;   shift;;
98         -m)        method=$2;       shift;;
99         -n)        VSERVER_NAME=$2; shift;;
100         --)        shift; break;;
101         *)
102             { setup_setOption2 "$1" "$2" && shift; } || \
103             { echo $"vserver-build: internal error."; exit 1; }
104             ;;
105     esac
106     shift
107 done
108
109 test "$VSERVER_NAME" || {
110     echo $"Name of vserver not specified"
111     exit 1
112 }
113
114 setup_setDefaults "$VSERVER_NAME"
115
116 case x"$method" in
117     xlegacy)    exec $_VSERVER_LEGACY "$VSERVER_NAME" build "$@" ;;
118     xapt-rpm|xcopy|xskeleton)
119                 . $PKGLIBDIR/vserver-build.$method
120                 ;;
121     x)          echo $"No build-method specified" >&2
122                 exit 1
123                 ;;
124     *)          echo $"Unknown build-method '$method'" >&2
125                 exit 1
126                 ;;
127 esac