initial checkin
[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:=$(dirname $0)/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
27 ### Some local functions
28
29 function showHelp()
30 {
31     echo \
32 $"Usage: $(basename $0) -m <method> -n <name> [--] <method-args>*
33
34 Possible methods are:
35     legacy      ...  the \"old\" copy-all-from-host method, which requires the
36                      old legacy vserver-legacy script
37     copy        ...  the copy-all-from-host method which uses the recent
38                      configuration scheme
39     apt -d <distribution>
40                 ...  installs the base-packages of the given distribution with
41                      help of 'vapt-get'
42
43 Please report bugs to $PACKAGE_BUGREPORT"
44     exit 0
45 }
46
47 function showVersion()
48 {
49     echo \
50 $"vserver-build $PACKAGE_VERSION -- initializes a vserver
51 This program is part of $PACKAGE_STRING
52
53 Copyright (C) 2003 Enrico Scholz
54 This program is free software; you may redistribute it under the terms of
55 the GNU General Public License.  This program has absolutely no warranty."
56     exit 0
57 }
58
59 ### main starts here
60
61 set +e
62
63 tmp=$(getopt -o +m:n: --long help,version -n "$0" -- "$@") || exit 1
64 eval set -- "$tmp"
65
66 while true; do
67     case "$1" in
68         --help)    showHelp $0 ;;
69         --version) showVersion ;;
70         -m)        method=$2; shift 2;;
71         -n)        name=$2;   shift 2;;
72         --)        shift; break;;
73         *)         echo $"vserver-build: internal error."; exit 1;;
74     esac
75 done
76
77
78
79 echo "Sorry, just a prototype currently..."
80 exit 1