- moved here from sysv/
[util-vserver.git] / distrib / install-rh9.0
1 #!/bin/sh
2
3 # Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 # based on distrib/install-rh9.0 by Jacques Gelinas
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; either version 2, or (at your option)
9 # any later version.
10 #  
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #  
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 # This script creates a vserver from RedHat 9.0 CD. Only
21 # the first CD is used and must be mounted in /mnt/cdrom.
22 # Specify the name of the vserver
23 # "install-rh9.0 test" will create /vservers/test
24
25 : ${UTIL_VSERVER_VARS:=$(dirname $0)/util-vserver-vars}
26 test -e "$UTIL_VSERVER_VARS" || {
27     echo "Can not find util-vserver installation; aborting..."
28     exit 1
29 }
30 . "$UTIL_VSERVER_VARS"
31
32 USR_LIB_VSERVER=$PKGLIBDIR
33
34 if [ $# -lt 1 ] ; then
35         echo install-rh9.0 vserver-id [ type ]
36         echo type minimum means, minimum package for a server
37         echo type large means, all packages on the first CD
38 elif [ -d $VROOTDIR/$1/var/lib/rpm ] ; then
39         echo $VROOTDIR/$1 already exist
40 elif [ ! -d /mnt/cdrom/RedHat/RPMS ] ; then
41         echo No rpms in /mnt/cdrom/RedHat/RPMS. Is the CD mounted \?
42 else
43         VROOT=$VROOTDIR/$1
44         $USR_LIB_VSERVER/install-pre.sh $1
45         mkdir -p $VROOT/proc
46         mount -t proc none $VROOT/proc
47         mount -t devpts none $VROOT/dev/pts
48         mkdir -p $VROOT/var/lib/rpm
49         rpm --root $VROOT --initdb
50         if [ "$2" = "minimum" ] ; then
51                 echo `cat $USR_LIB_VSERVER/rh9.0-minimum | wc -l` packages to install
52                 cd /mnt/cdrom/RedHat/RPMS
53                 rpm --root $VROOT -Uvh `cat $USR_LIB_VSERVER/rh9.0-minimum`
54         else
55                 PKGS=`ls /mnt/cdrom/RedHat/RPMS/*.noarch.rpm \
56                          /mnt/cdrom/RedHat/RPMS/*.i386.rpm`
57                 for except in control-center iptables kernel-pcmcia-cs\
58                         nfs-utils pciutils quota rp-pppoe tcpdump \
59                         lokkit kudzu-devel pciutils-devel \
60                         redhat-config-securitylevel redhat-config-nfs
61                 do
62                         PKGS=`ls $PKGS | grep -v $except`
63                 done
64                 echo `echo $PKGS | wc -w` packages to install
65                 rpm --root $VROOT -Uvh $PKGS --nodeps
66         fi
67         umount $VROOT/proc
68         umount $VROOT/dev/pts
69         $USR_LIB_VSERVER/install-post.sh $1
70 fi
71
72