From: Enrico Scholz Date: Tue, 30 Sep 2003 18:11:34 +0000 (+0000) Subject: Replaced the install-* and *-minimum files with configuration files X-Git-Tag: VERSION_0_10~1341 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75e860690f372d193513e91ce9c3a476b03142c0;p=util-vserver.git Replaced the install-* and *-minimum files with configuration files for the new vserver-init tool in the scripts directory. To ease the 'install:'-make target, it is necessarily to use recursive make for this directory. git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@13 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/util-vserver/distrib/Makefile-files b/util-vserver/distrib/Makefile.am similarity index 57% rename from util-vserver/distrib/Makefile-files rename to util-vserver/distrib/Makefile.am index 0b73f26..e3fec13 100644 --- a/util-vserver/distrib/Makefile-files +++ b/util-vserver/distrib/Makefile.am @@ -1,11 +1,10 @@ -## $Id$ -*- makefile -*- +## $Id$ ## Copyright (C) 2003 Enrico Scholz ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2, or (at your option) -## any later version. +## the Free Software Foundation; version 2 of the License. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -16,18 +15,11 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -distrib_SCRPTS = distrib/install-mdk8.2 \ - distrib/install-post.sh \ - distrib/install-pre.sh \ - distrib/install-rh7.2 \ - distrib/install-rh7.3 \ - distrib/install-rh8.0 \ - distrib/install-rh9.0 \ - distrib/sample.sh +distribdir = $(pkglibdir) -distrib_DAT = distrib/mdk8.2-minimum \ - distrib/rh7.3-minimum \ - distrib/rh8.0-minimum \ - distrib/rh9.0-minimum \ - distrib/sample.conf +nobase_distrib_DATA = defaults/devs \ + defaults/rpm/macros \ + rh9/pkgs/01 rh9/pkgs/02 \ + rh9.0.93/pkgs/01 rh9.0.93/pkgs/02 +EXTRA_DIST = $(nobase_distrib_DATA) diff --git a/util-vserver/distrib/defaults/devs b/util-vserver/distrib/defaults/devs new file mode 100644 index 0000000..641e9de --- /dev/null +++ b/util-vserver/distrib/defaults/devs @@ -0,0 +1,7 @@ +null c 1 3 666 +zero c 1 5 666 +full c 1 7 666 +random c 1 8 644 +urandom c 1 9 644 +tty c 5 0 666 +ptmx c 5 2 666 diff --git a/util-vserver/distrib/defaults/rpm/macros b/util-vserver/distrib/defaults/rpm/macros new file mode 100644 index 0000000..ae8dde1 --- /dev/null +++ b/util-vserver/distrib/defaults/rpm/macros @@ -0,0 +1,2 @@ +%_install_langs C:de:de_DE:en +%_netsharedpath /dev diff --git a/util-vserver/distrib/install-mdk8.2 b/util-vserver/distrib/install-mdk8.2 deleted file mode 100644 index 5212ca4..0000000 --- a/util-vserver/distrib/install-mdk8.2 +++ /dev/null @@ -1,61 +0,0 @@ -#!/bin/sh -# $Id$ --*- sh -*-- - -# Copyright (C) 2003 Enrico Scholz -# based on install-mdk8.2 by Jacques Gelinas -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - - -# This script creates a vserver from Mandrake 8.2 CD. Only -# the first CD is used and must be mounted in /mnt/cdrom. -# Specify the name of the vserver -# "install-mdk8.2 test" will create /vservers/test - -USR_LIB_VSERVER=$(dirname $0) -if [ $# -lt 1 ] ; then - echo install-mdk8.2 vserver-id [ type ] - echo type minimum means, minimum package for a server - echo type large means, all packages on the first CD -elif [ -d /vservers/$1/var/lib/rpm ] ; then - echo /vservers/$1 already exist -elif [ ! -d /mnt/cdrom/Mandrake/RPMS ] ; then - echo No rpms in /mnt/cdrom/Mandrake/RPMS. Is the CD mounted \? -else - VROOT=/vservers/$1 - $USR_LIB_VSERVER/install-pre.sh $1 - mkdir -p $VROOT/proc - mount -t proc none $VROOT/proc - mkdir -p $VROOT/var/lib/rpm - rpm --root $VROOT --initdb - if [ "$2" = "minimum" ] ; then - echo `cat $USR_LIB_VSERVER/mdk8.2-minimum | wc -l` packages to install - cd /mnt/cdrom/Mandrake/RPMS - rpm --root $VROOT -Uvh `cat $USR_LIB_VSERVER/mdk8.2-minimum` - else - PKGS=`ls /mnt/cdrom/Mandrake/RPMS/*.i586.rpm | grep -v LPRng- \ - | grep -v lpr-` - - echo `(ls /mnt/cdrom/Mandrake/RPMS/*.noarch.rpm \ - ;echo $PKGS) | wc -w` packages to install - rpm --root $VROOT -Uvh \ - /mnt/cdrom/Mandrake/RPMS/*.noarch.rpm \ - $PKGS --nodeps - fi - $USR_LIB_VSERVER/install-post.sh $1 - umount $VROOT/proc -fi - - diff --git a/util-vserver/distrib/install-post.sh b/util-vserver/distrib/install-post.sh deleted file mode 100644 index d877321..0000000 --- a/util-vserver/distrib/install-post.sh +++ /dev/null @@ -1,70 +0,0 @@ -#!/bin/sh - -# Copyright (C) 2003 Enrico Scholz -# based on distrib/install-post by Jacques Gelinas -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# Complete the installation of a vserver -USR_LIB_VSERVER=$(dirname $0) -vserver_mknod() -{ - mknod $1 $2 $3 $4 - chmod $5 $1 -} - -if [ $# != 1 ] ; then - echo install-post.sh vserver -else - VROOT=/vservers/$1 - rm -fr $VROOT/dev - mkdir $VROOT/dev && chmod 755 $VROOT/dev - mkdir $VROOT/dev/pts - vserver_mknod $VROOT/dev/null c 1 3 666 - vserver_mknod $VROOT/dev/zero c 1 5 666 - vserver_mknod $VROOT/dev/full c 1 7 666 - vserver_mknod $VROOT/dev/random c 1 8 644 - vserver_mknod $VROOT/dev/urandom c 1 9 644 - vserver_mknod $VROOT/dev/tty c 5 0 666 - vserver_mknod $VROOT/dev/ptmx c 5 2 666 - test -f /etc/vservers/$1.conf || cp $USR_LIB_VSERVER/sample.conf /etc/vservers/$1.conf - test -f /etc/vservers/$1.sh || cp $USR_LIB_VSERVER/sample.sh /etc/vservers/$1.sh - echo NETWORKING=yes >$VROOT/etc/sysconfig/network - echo HOSTNAME=$1 >>$VROOT/etc/sysconfig/network - ( - cd $VROOT/etc/rc.d/init.d || cd $VROOT/etc/init.d - for serv in * - do - case $serv in - *.bak|*~|functions|killall|halt|single) - ;; - *) - $USR_LIB_VSERVER/capchroot /vservers/$1 /sbin/chkconfig --level 2345 $serv off - ;; - esac - done - rm -f $VROOT/etc/rc.d/rc6.d/S*reboot - ) - if [ ! -f $VROOT/etc/fstab ] ; then - echo /dev/hdv1 / ext2 defaults 1 1 >$VROOT/etc/fstab - echo /dev/hdv1 / ext2 rw 1 1 >$VROOT/etc/mtab - fi - cp -a $USR_LIB_VSERVER/vreboot $VROOT/sbin/. - ln -sf vreboot $VROOT/sbin/vhalt - if [ -x /etc/vservers/install-post.sh ]; then - /etc/vservers/install-post.sh $VROOT - fi -fi - diff --git a/util-vserver/distrib/install-pre.sh b/util-vserver/distrib/install-pre.sh deleted file mode 100644 index 262a5f6..0000000 --- a/util-vserver/distrib/install-pre.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh - -# Copyright (C) 2003 Enrico Scholz -# based on distrib/install-pre by Jacques Gelinas -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -vserver_mknod() -{ - mknod $1 $2 $3 $4 - chmod $5 $1 -} - -if [ $# != 1 ] ; then - echo install-pre.sh vserver -else - mkdir -p /etc/vservers - mkdir -p /vservers 2>/dev/null - VROOT=/vservers/$1 - rm -fr $VROOT/dev - mkdir -p $VROOT/dev && chmod 755 $VROOT/dev - mkdir $VROOT/dev/pts - vserver_mknod $VROOT/dev/null c 1 3 666 - vserver_mknod $VROOT/dev/zero c 1 5 666 - vserver_mknod $VROOT/dev/full c 1 7 666 - vserver_mknod $VROOT/dev/random c 1 8 644 - vserver_mknod $VROOT/dev/urandom c 1 9 644 - vserver_mknod $VROOT/dev/tty c 5 0 666 - vserver_mknod $VROOT/dev/ptmx c 5 2 666 - # We fake this device to help some package managers - touch $VROOT/dev/hdv1 -fi - diff --git a/util-vserver/distrib/install-rh7.2 b/util-vserver/distrib/install-rh7.2 deleted file mode 100644 index b3bd0ca..0000000 --- a/util-vserver/distrib/install-rh7.2 +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh -# $Id$ --*- sh -*-- - -# Copyright (C) 2003 Enrico Scholz -# based on distrib/install-rh7.2 by Jacques Gelinas -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# This script creates a vserver from RedHat 7.2 CD. Only -# the first CD is used and must be mounted in /mnt/cdrom. -# Specify the name of the vserver -# "install-rh7.2 test" will create /vservers/test - -USR_LIB_VSERVER=$(dirname $0) -if [ $# != 1 ] ; then - echo install-rh7.2 vserver-id -elif [ -d /vservers/$1/var/lib/rpm ] ; then - echo /vservers/$1 already exist -elif [ ! -d /mnt/cdrom/RedHat/RPMS ] ; then - echo No rpms in /mnt/cdrom/RedHat/RPMS. Is the CD mounted \? -else - echo `ls /mnt/cdrom/RedHat/RPMS/*.noarch.rpm \ - /mnt/cdrom/RedHat/RPMS/*.i386.rpm | wc -l` packages to install - VROOT=/vservers/$1 - mkdir -p $VROOT/proc - mount -t proc none $VROOT/proc - mkdir -p $VROOT/var/lib/rpm - rpm --root $VROOT --initdb - rpm --root $VROOT -Uvh \ - /mnt/cdrom/RedHat/RPMS/*.noarch.rpm \ - /mnt/cdrom/RedHat/RPMS/*.i386.rpm - $USR_LIB_VSERVER/install-post.sh $1 - umount $VROOT/proc -fi - - diff --git a/util-vserver/distrib/install-rh7.3 b/util-vserver/distrib/install-rh7.3 deleted file mode 100644 index b50d14a..0000000 --- a/util-vserver/distrib/install-rh7.3 +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh -# $Id$ --*- sh -*-- - -# Copyright (C) 2003 Enrico Scholz -# based on distrib/install-rh7.3 by Jacques Gelinas -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# This script creates a vserver from RedHat 7.3 CD. Only -# the first CD is used and must be mounted in /mnt/cdrom. -# Specify the name of the vserver -# "install-rh7.3 test" will create /vservers/test - -USR_LIB_VSERVER=$(dirname $0) -if [ $# -lt 1 ] ; then - echo install-rh7.3 vserver-id [ type ] - echo type minimum means, minimum package for a server - echo type large means, all packages on the first CD -elif [ -d /vservers/$1/var/lib/rpm ] ; then - echo /vservers/$1 already exist -elif [ ! -d /mnt/cdrom/RedHat/RPMS ] ; then - echo No rpms in /mnt/cdrom/RedHat/RPMS. Is the CD mounted \? -else - VROOT=/vservers/$1 - mkdir -p $VROOT/proc - mount -t proc none $VROOT/proc - mkdir -p $VROOT/var/lib/rpm - rpm --root $VROOT --initdb - if [ "$2" = "minimum" ] ; then - echo `cat $USR_LIB_VSERVER/rh7.3-minimum | wc -l` packages to install - cd /mnt/cdrom/RedHat/RPMS - rpm --root $VROOT -Uvh `cat $USR_LIB_VSERVER/rh7.3-minimum` - else - echo `ls /mnt/cdrom/RedHat/RPMS/*.noarch.rpm \ - /mnt/cdrom/RedHat/RPMS/*.i386.rpm | wc -l` packages to install - rpm --root $VROOT -Uvh \ - /mnt/cdrom/RedHat/RPMS/*.noarch.rpm \ - /mnt/cdrom/RedHat/RPMS/*.i386.rpm --nodeps - fi - $USR_LIB_VSERVER/install-post.sh $1 - umount $VROOT/proc -fi - - diff --git a/util-vserver/distrib/install-rh8.0 b/util-vserver/distrib/install-rh8.0 deleted file mode 100644 index 625c3a8..0000000 --- a/util-vserver/distrib/install-rh8.0 +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh - -# Copyright (C) 2003 Enrico Scholz -# based on distrib/install-rh8.0 by Jacques Gelinas -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# This script creates a vserver from RedHat 8.0 CD. Only -# the first CD is used and must be mounted in /mnt/cdrom. -# Specify the name of the vserver -# "install-rh8.0 test" will create /vservers/test - -USR_LIB_VSERVER=$(dirname $0) -if [ $# -lt 1 ] ; then - echo install-rh8.0 vserver-id [ type ] - echo type minimum means, minimum package for a server - echo type large means, all packages on the first CD -elif [ -d /vservers/$1/var/lib/rpm ] ; then - echo /vservers/$1 already exist -elif [ ! -d /mnt/cdrom/RedHat/RPMS ] ; then - echo No rpms in /mnt/cdrom/RedHat/RPMS. Is the CD mounted \? -else - VROOT=/vservers/$1 - $USR_LIB_VSERVER/install-pre.sh $1 - mkdir -p $VROOT/proc - mount -t proc none $VROOT/proc - mount -t devpts none $VROOT/dev/pts - mkdir -p $VROOT/var/lib/rpm - rpm --root $VROOT --initdb - if [ "$2" = "minimum" ] ; then - echo `cat $USR_LIB_VSERVER/rh8.0-minimum | wc -l` packages to install - cd /mnt/cdrom/RedHat/RPMS - rpm --root $VROOT -Uvh `cat $USR_LIB_VSERVER/rh8.0-minimum` - else - PKGS=`ls /mnt/cdrom/RedHat/RPMS/*.noarch.rpm \ - /mnt/cdrom/RedHat/RPMS/*.i386.rpm` - for except in control-center iptables kernel-pcmcia-cs\ - nfs-utils pciutils quota rp-pppoe tcpdump \ - lokkit kudzu-devel pciutils-devel - do - PKGS=`ls $PKGS | grep -v $except` - done - echo `echo $PKGS | wc -w` packages to install - rpm --root $VROOT -Uvh $PKGS - fi - umount $VROOT/proc - umount $VROOT/dev/pts - $USR_LIB_VSERVER/install-post.sh $1 -fi - - diff --git a/util-vserver/distrib/install-rh9.0 b/util-vserver/distrib/install-rh9.0 deleted file mode 100644 index 6aa639b..0000000 --- a/util-vserver/distrib/install-rh9.0 +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/sh - -# Copyright (C) 2003 Enrico Scholz -# based on distrib/install-rh9.0 by Jacques Gelinas -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# This script creates a vserver from RedHat 9.0 CD. Only -# the first CD is used and must be mounted in /mnt/cdrom. -# Specify the name of the vserver -# "install-rh9.0 test" will create /vservers/test - -USR_LIB_VSERVER=$(dirname $0) -if [ $# -lt 1 ] ; then - echo install-rh9.0 vserver-id [ type ] - echo type minimum means, minimum package for a server - echo type large means, all packages on the first CD -elif [ -d /vservers/$1/var/lib/rpm ] ; then - echo /vservers/$1 already exist -elif [ ! -d /mnt/cdrom/RedHat/RPMS ] ; then - echo No rpms in /mnt/cdrom/RedHat/RPMS. Is the CD mounted \? -else - VROOT=/vservers/$1 - $USR_LIB_VSERVER/install-pre.sh $1 - mkdir -p $VROOT/proc - mount -t proc none $VROOT/proc - mount -t devpts none $VROOT/dev/pts - mkdir -p $VROOT/var/lib/rpm - rpm --root $VROOT --initdb - if [ "$2" = "minimum" ] ; then - echo `cat $USR_LIB_VSERVER/rh9.0-minimum | wc -l` packages to install - cd /mnt/cdrom/RedHat/RPMS - rpm --root $VROOT -Uvh `cat $USR_LIB_VSERVER/rh9.0-minimum` - else - PKGS=`ls /mnt/cdrom/RedHat/RPMS/*.noarch.rpm \ - /mnt/cdrom/RedHat/RPMS/*.i386.rpm` - for except in control-center iptables kernel-pcmcia-cs\ - nfs-utils pciutils quota rp-pppoe tcpdump \ - lokkit kudzu-devel pciutils-devel \ - redhat-config-securitylevel redhat-config-nfs - do - PKGS=`ls $PKGS | grep -v $except` - done - echo `echo $PKGS | wc -w` packages to install - rpm --root $VROOT -Uvh $PKGS --nodeps - fi - umount $VROOT/proc - umount $VROOT/dev/pts - $USR_LIB_VSERVER/install-post.sh $1 -fi - - diff --git a/util-vserver/distrib/mdk8.2-minimum b/util-vserver/distrib/mdk8.2-minimum deleted file mode 100644 index 344325d..0000000 --- a/util-vserver/distrib/mdk8.2-minimum +++ /dev/null @@ -1,179 +0,0 @@ -4Suite-0.11.1-8.i386.rpm -Canna-3.5b2-62.i386.rpm -Canna-libs-3.5b2-62.i386.rpm -Distutils-1.0.2-2.noarch.rpm -MAKEDEV-3.3-4.i386.rpm -PyXML-0.7-4.i386.rpm -SysVinit-2.84-2.i386.rpm -a2ps-4.13b-19.i386.rpm -alchemist-1.0.23-1.i386.rpm -anacron-2.3-17.i386.rpm -ash-0.3.7-2.i386.rpm -at-3.1.8-23.i386.rpm -audiofile-0.2.3-1.i386.rpm -authconfig-4.2.8-4.i386.rpm -basesystem-7.0-2.noarch.rpm -bash-2.05a-13.i386.rpm -bdflush-1.5-17.i386.rpm -bzip2-1.0.2-2.i386.rpm -bzip2-libs-1.0.2-2.i386.rpm -chkconfig-1.3.5-3.i386.rpm -cpio-2.4.2-26.i386.rpm -cracklib-2.7-15.i386.rpm -cracklib-dicts-2.7-15.i386.rpm -crontabs-1.10-1.noarch.rpm -cyrus-sasl-1.5.24-25.i386.rpm -cyrus-sasl-md5-1.5.24-25.i386.rpm -cyrus-sasl-plain-1.5.24-25.i386.rpm -db1-1.85-8.i386.rpm -db2-2.4.14-10.i386.rpm -db3-3.3.11-6.i386.rpm -dev-3.3-4.i386.rpm -diffutils-2.7.2-5.i386.rpm -dosfstools-2.8-1.i386.rpm -e2fsprogs-1.27-3.i386.rpm -ed-0.2-25.i386.rpm -fam-2.6.7-6.i386.rpm -file-3.37-5.i386.rpm -filesystem-2.1.6-2.noarch.rpm -fileutils-4.1-10.i386.rpm -findutils-4.1.7-4.i386.rpm -freetype-2.0.9-2.i386.rpm -gawk-3.1.0-4.i386.rpm -gdbm-1.8.0-14.i386.rpm -glib-1.2.10-5.i386.rpm -glib2-2.0.1-2.i386.rpm -glibc-2.2.5-34.i386.rpm -glibc-common-2.2.5-34.i386.rpm -gnupg-1.0.6-5.i386.rpm -grep-2.5.1-1.i386.rpm -groff-1.17.2-12.i386.rpm -groff-perl-1.17.2-12.i386.rpm -gzip-1.3.3-1.i386.rpm -htdig-3.2.0-2.011302.i386.rpm -indexhtml-7.3-3.noarch.rpm -info-4.1-1.i386.rpm -initscripts-6.67-1.i386.rpm -iputils-20020124-3.i386.rpm -less-358-24.i386.rpm -libcap-1.10-8.i386.rpm -libghttp-1.0.9-2.i386.rpm -libjpeg-6b-19.i386.rpm -libmng-1.0.3-2.i386.rpm -libogg-1.0rc3-1.i386.rpm -libpng-1.0.12-2.i386.rpm -libstdc++-2.96-110.i386.rpm -libtermcap-2.0.8-28.i386.rpm -libtiff-3.5.7-2.i386.rpm -libtool-libs-1.4.2-7.i386.rpm -libunicode-0.4-6.i386.rpm -libuser-0.50.2-1.i386.rpm -libvorbis-1.0rc3-1.i386.rpm -libxml-1.8.17-3.i386.rpm -libxml2-2.4.19-4.i386.rpm -libxslt-1.0.15-1.i386.rpm -logrotate-3.6.4-1.i386.rpm -losetup-2.11n-12.i386.rpm -m4-1.4.1-7.i386.rpm -mailcap-2.1.9-2.noarch.rpm -mailx-8.1.1-22.i386.rpm -make-3.79.1-8.i386.rpm -man-1.5j-6.i386.rpm -man-pages-1.48-2.noarch.rpm -mktemp-1.5-14.i386.rpm -mount-2.11n-12.i386.rpm -mpage-2.5.1-9.i386.rpm -ncurses-5.2-26.i386.rpm -netpbm-9.24-3.i386.rpm -netpbm-progs-9.24-3.i386.rpm -newt-0.50.35-1.i386.rpm -nhpf-1.42-2.i386.rpm -ntsysv-1.3.5-3.i386.rpm -openldap-2.0.23-4.i386.rpm -openssh-3.1p1-3.i386.rpm -openssh-clients-3.1p1-3.i386.rpm -openssl-0.9.6b-18.i386.rpm -pam-0.75-32.i386.rpm -passwd-0.67-1.i386.rpm -patch-2.5.4-12.i386.rpm -pcre-3.9-2.i386.rpm -perl-5.6.1-34.99.6.i386.rpm -perl-CGI-2.752-34.99.6.i386.rpm -perl-CPAN-1.59_54-34.99.6.i386.rpm -perl-DB_File-1.75-34.99.6.i386.rpm -perl-DateManip-5.40-15.i386.rpm -perl-Digest-MD5-2.16-15.i386.rpm -perl-File-MMagic-1.13-14.i386.rpm -perl-HTML-Parser-3.26-2.i386.rpm -perl-HTML-Tagset-3.03-14.i386.rpm -perl-MIME-Base64-2.12-14.i386.rpm -perl-NDBM_File-1.75-34.99.6.i386.rpm -perl-NKF-1.71-2.i386.rpm -perl-Parse-Yapp-1.05-15.i386.rpm -perl-Storable-1.0.14-15.i386.rpm -perl-URI-1.17-16.i386.rpm -perl-XML-Dumper-0.4-12.noarch.rpm -perl-XML-Encoding-1.01-9.noarch.rpm -perl-XML-Grove-0.46alpha-11.noarch.rpm -perl-XML-Parser-2.30-15.i386.rpm -perl-XML-Twig-2.02-9.noarch.rpm -perl-libnet-1.0901-17.i386.rpm -perl-libwww-perl-5.63-9.i386.rpm -perl-libxml-enno-1.02-15.i386.rpm -perl-libxml-perl-0.07-14.noarch.rpm -pnm2ppa-1.04-2.i386.rpm -popt-1.6.4-7x.18.i386.rpm -portmap-4.0-41.i386.rpm -procmail-3.22-5.i386.rpm -procps-2.0.7-12.i386.rpm -psmisc-20.2-2.i386.rpm -pspell-0.12.2-8.i386.rpm -psutils-1.17-13.i386.rpm -pwdb-0.61.2-2.i386.rpm -python-1.5.2-38.i386.rpm -python-clap-1.0.0-3.noarch.rpm -python-popt-0.8.8-7.x.2.i386.rpm -python-xmlrpc-1.5.1-7.x.3.i386.rpm -python2-2.2-16.i386.rpm -readline-4.2a-4.i386.rpm -redhat-release-7.3-1.noarch.rpm -rootfiles-7.2-1.noarch.rpm -rpm-4.0.4-7x.18.i386.rpm -rpm-python-4.0.4-7x.18.i386.rpm -sed-3.02-11.i386.rpm -sendmail-8.11.6-15.i386.rpm -setup-2.5.12-1.noarch.rpm -sgml-common-0.6.3-9.noarch.rpm -sh-utils-2.0.11-14.i386.rpm -shadow-utils-20000902-7.i386.rpm -slang-1.4.5-2.i386.rpm -slocate-2.6-1.i386.rpm -specspo-7.3-4.noarch.rpm -sysklogd-1.4.1-8.i386.rpm -tar-1.13.25-4.i386.rpm -tcl-8.3.3-67.i386.rpm -tcsh-6.10-6.i386.rpm -termcap-11.0.1-10.noarch.rpm -textutils-2.0.21-1.i386.rpm -time-1.7-16.i386.rpm -tmpwatch-2.8.3-1.i386.rpm -umb-scheme-3.2-21.i386.rpm -unzip-5.50-2.i386.rpm -usermode-1.53-2.i386.rpm -utempter-0.5.2-6.i386.rpm -util-linux-2.11n-12.i386.rpm -vim-common-6.1-2.i386.rpm -vim-minimal-6.1-2.i386.rpm -vixie-cron-3.0.1-64.i386.rpm -which-2.13-3.i386.rpm -words-2-18.noarch.rpm -xinetd-2.3.4-0.8.i386.rpm -xml-common-0.6.3-9.noarch.rpm -zip-2.3-12.i386.rpm -zlib-1.1.3-25.7.i386.rpm -mingetty-1.00-1.i386.rpm -iproute-2.4.7-1.i386.rpm -modutils-2.4.14-3.i386.rpm -gmp-4.0.1-3.i386.rpm -expat-1.95.2-2.i386.rpm -net-tools-1.60-4.i386.rpm diff --git a/util-vserver/distrib/rh7.3-minimum b/util-vserver/distrib/rh7.3-minimum deleted file mode 100644 index 344325d..0000000 --- a/util-vserver/distrib/rh7.3-minimum +++ /dev/null @@ -1,179 +0,0 @@ -4Suite-0.11.1-8.i386.rpm -Canna-3.5b2-62.i386.rpm -Canna-libs-3.5b2-62.i386.rpm -Distutils-1.0.2-2.noarch.rpm -MAKEDEV-3.3-4.i386.rpm -PyXML-0.7-4.i386.rpm -SysVinit-2.84-2.i386.rpm -a2ps-4.13b-19.i386.rpm -alchemist-1.0.23-1.i386.rpm -anacron-2.3-17.i386.rpm -ash-0.3.7-2.i386.rpm -at-3.1.8-23.i386.rpm -audiofile-0.2.3-1.i386.rpm -authconfig-4.2.8-4.i386.rpm -basesystem-7.0-2.noarch.rpm -bash-2.05a-13.i386.rpm -bdflush-1.5-17.i386.rpm -bzip2-1.0.2-2.i386.rpm -bzip2-libs-1.0.2-2.i386.rpm -chkconfig-1.3.5-3.i386.rpm -cpio-2.4.2-26.i386.rpm -cracklib-2.7-15.i386.rpm -cracklib-dicts-2.7-15.i386.rpm -crontabs-1.10-1.noarch.rpm -cyrus-sasl-1.5.24-25.i386.rpm -cyrus-sasl-md5-1.5.24-25.i386.rpm -cyrus-sasl-plain-1.5.24-25.i386.rpm -db1-1.85-8.i386.rpm -db2-2.4.14-10.i386.rpm -db3-3.3.11-6.i386.rpm -dev-3.3-4.i386.rpm -diffutils-2.7.2-5.i386.rpm -dosfstools-2.8-1.i386.rpm -e2fsprogs-1.27-3.i386.rpm -ed-0.2-25.i386.rpm -fam-2.6.7-6.i386.rpm -file-3.37-5.i386.rpm -filesystem-2.1.6-2.noarch.rpm -fileutils-4.1-10.i386.rpm -findutils-4.1.7-4.i386.rpm -freetype-2.0.9-2.i386.rpm -gawk-3.1.0-4.i386.rpm -gdbm-1.8.0-14.i386.rpm -glib-1.2.10-5.i386.rpm -glib2-2.0.1-2.i386.rpm -glibc-2.2.5-34.i386.rpm -glibc-common-2.2.5-34.i386.rpm -gnupg-1.0.6-5.i386.rpm -grep-2.5.1-1.i386.rpm -groff-1.17.2-12.i386.rpm -groff-perl-1.17.2-12.i386.rpm -gzip-1.3.3-1.i386.rpm -htdig-3.2.0-2.011302.i386.rpm -indexhtml-7.3-3.noarch.rpm -info-4.1-1.i386.rpm -initscripts-6.67-1.i386.rpm -iputils-20020124-3.i386.rpm -less-358-24.i386.rpm -libcap-1.10-8.i386.rpm -libghttp-1.0.9-2.i386.rpm -libjpeg-6b-19.i386.rpm -libmng-1.0.3-2.i386.rpm -libogg-1.0rc3-1.i386.rpm -libpng-1.0.12-2.i386.rpm -libstdc++-2.96-110.i386.rpm -libtermcap-2.0.8-28.i386.rpm -libtiff-3.5.7-2.i386.rpm -libtool-libs-1.4.2-7.i386.rpm -libunicode-0.4-6.i386.rpm -libuser-0.50.2-1.i386.rpm -libvorbis-1.0rc3-1.i386.rpm -libxml-1.8.17-3.i386.rpm -libxml2-2.4.19-4.i386.rpm -libxslt-1.0.15-1.i386.rpm -logrotate-3.6.4-1.i386.rpm -losetup-2.11n-12.i386.rpm -m4-1.4.1-7.i386.rpm -mailcap-2.1.9-2.noarch.rpm -mailx-8.1.1-22.i386.rpm -make-3.79.1-8.i386.rpm -man-1.5j-6.i386.rpm -man-pages-1.48-2.noarch.rpm -mktemp-1.5-14.i386.rpm -mount-2.11n-12.i386.rpm -mpage-2.5.1-9.i386.rpm -ncurses-5.2-26.i386.rpm -netpbm-9.24-3.i386.rpm -netpbm-progs-9.24-3.i386.rpm -newt-0.50.35-1.i386.rpm -nhpf-1.42-2.i386.rpm -ntsysv-1.3.5-3.i386.rpm -openldap-2.0.23-4.i386.rpm -openssh-3.1p1-3.i386.rpm -openssh-clients-3.1p1-3.i386.rpm -openssl-0.9.6b-18.i386.rpm -pam-0.75-32.i386.rpm -passwd-0.67-1.i386.rpm -patch-2.5.4-12.i386.rpm -pcre-3.9-2.i386.rpm -perl-5.6.1-34.99.6.i386.rpm -perl-CGI-2.752-34.99.6.i386.rpm -perl-CPAN-1.59_54-34.99.6.i386.rpm -perl-DB_File-1.75-34.99.6.i386.rpm -perl-DateManip-5.40-15.i386.rpm -perl-Digest-MD5-2.16-15.i386.rpm -perl-File-MMagic-1.13-14.i386.rpm -perl-HTML-Parser-3.26-2.i386.rpm -perl-HTML-Tagset-3.03-14.i386.rpm -perl-MIME-Base64-2.12-14.i386.rpm -perl-NDBM_File-1.75-34.99.6.i386.rpm -perl-NKF-1.71-2.i386.rpm -perl-Parse-Yapp-1.05-15.i386.rpm -perl-Storable-1.0.14-15.i386.rpm -perl-URI-1.17-16.i386.rpm -perl-XML-Dumper-0.4-12.noarch.rpm -perl-XML-Encoding-1.01-9.noarch.rpm -perl-XML-Grove-0.46alpha-11.noarch.rpm -perl-XML-Parser-2.30-15.i386.rpm -perl-XML-Twig-2.02-9.noarch.rpm -perl-libnet-1.0901-17.i386.rpm -perl-libwww-perl-5.63-9.i386.rpm -perl-libxml-enno-1.02-15.i386.rpm -perl-libxml-perl-0.07-14.noarch.rpm -pnm2ppa-1.04-2.i386.rpm -popt-1.6.4-7x.18.i386.rpm -portmap-4.0-41.i386.rpm -procmail-3.22-5.i386.rpm -procps-2.0.7-12.i386.rpm -psmisc-20.2-2.i386.rpm -pspell-0.12.2-8.i386.rpm -psutils-1.17-13.i386.rpm -pwdb-0.61.2-2.i386.rpm -python-1.5.2-38.i386.rpm -python-clap-1.0.0-3.noarch.rpm -python-popt-0.8.8-7.x.2.i386.rpm -python-xmlrpc-1.5.1-7.x.3.i386.rpm -python2-2.2-16.i386.rpm -readline-4.2a-4.i386.rpm -redhat-release-7.3-1.noarch.rpm -rootfiles-7.2-1.noarch.rpm -rpm-4.0.4-7x.18.i386.rpm -rpm-python-4.0.4-7x.18.i386.rpm -sed-3.02-11.i386.rpm -sendmail-8.11.6-15.i386.rpm -setup-2.5.12-1.noarch.rpm -sgml-common-0.6.3-9.noarch.rpm -sh-utils-2.0.11-14.i386.rpm -shadow-utils-20000902-7.i386.rpm -slang-1.4.5-2.i386.rpm -slocate-2.6-1.i386.rpm -specspo-7.3-4.noarch.rpm -sysklogd-1.4.1-8.i386.rpm -tar-1.13.25-4.i386.rpm -tcl-8.3.3-67.i386.rpm -tcsh-6.10-6.i386.rpm -termcap-11.0.1-10.noarch.rpm -textutils-2.0.21-1.i386.rpm -time-1.7-16.i386.rpm -tmpwatch-2.8.3-1.i386.rpm -umb-scheme-3.2-21.i386.rpm -unzip-5.50-2.i386.rpm -usermode-1.53-2.i386.rpm -utempter-0.5.2-6.i386.rpm -util-linux-2.11n-12.i386.rpm -vim-common-6.1-2.i386.rpm -vim-minimal-6.1-2.i386.rpm -vixie-cron-3.0.1-64.i386.rpm -which-2.13-3.i386.rpm -words-2-18.noarch.rpm -xinetd-2.3.4-0.8.i386.rpm -xml-common-0.6.3-9.noarch.rpm -zip-2.3-12.i386.rpm -zlib-1.1.3-25.7.i386.rpm -mingetty-1.00-1.i386.rpm -iproute-2.4.7-1.i386.rpm -modutils-2.4.14-3.i386.rpm -gmp-4.0.1-3.i386.rpm -expat-1.95.2-2.i386.rpm -net-tools-1.60-4.i386.rpm diff --git a/util-vserver/distrib/rh8.0-minimum b/util-vserver/distrib/rh8.0-minimum deleted file mode 100644 index c96370f..0000000 --- a/util-vserver/distrib/rh8.0-minimum +++ /dev/null @@ -1,163 +0,0 @@ -4Suite-[0-9]*.i386.rpm -Canna-[0-9]*.i386.rpm -Canna-libs-[0-9]*.i386.rpm -Distutils-*.noarch.rpm -MAKEDEV-[0-9]*.i386.rpm -PyXML-[0-9]*.i386.rpm -SysVinit-[0-9]*.i386.rpm -a2ps-[0-9]*.i386.rpm -alchemist-[0-9]*.i386.rpm -anacron-[0-9]*.i386.rpm -ash-[0-9]*.i386.rpm -at-[0-9]*.i386.rpm -audiofile-[0-9]*.i386.rpm -authconfig-[0-9]*.i386.rpm -basesystem-*.noarch.rpm -bash-[0-9]*.i386.rpm -bdflush-[0-9]*.i386.rpm -bzip2-[0-9]*.i386.rpm -bzip2-libs-[0-9]*.i386.rpm -chkconfig-[0-9]*.i386.rpm -cpio-[0-9]*.i386.rpm -cracklib-[0-9]*.i386.rpm -cracklib-dicts-[0-9]*.i386.rpm -crontabs-*.noarch.rpm -cyrus-sasl-[0-9]*.i386.rpm -cyrus-sasl-md5-[0-9]*.i386.rpm -db1-[0-9]*.i386.rpm -db2-[0-9]*.i386.rpm -db3-[0-9]*.i386.rpm -db4-[0-9]*.i386.rpm -libelf-[0-9]*.i386.rpm -dev-[0-9]*.i386.rpm -diffutils-[0-9]*.i386.rpm -dosfstools-[0-9]*.i386.rpm -e2fsprogs-[0-9]*.i386.rpm -ed-[0-9]*.i386.rpm -fam-[0-9]*.i386.rpm -file-[0-9]*.i386.rpm -filesystem-[0-9]*.noarch.rpm -fileutils-[0-9]*.i386.rpm -findutils-[0-9]*.i386.rpm -libacl-[0-9]*.i386.rpm -libgcc-[0-9]*.i386.rpm -freetype-[0-9]*.i386.rpm -gawk-[0-9]*.i386.rpm -gdbm-[0-9]*.i386.rpm -glib-[0-9]*.i386.rpm -glib2-[0-9]*.i386.rpm -glibc-[0-9]*.i386.rpm -glibc-common-[0-9]*.i386.rpm -gnupg-[0-9]*.i386.rpm -grep-[0-9]*.i386.rpm -groff-[0-9]*.i386.rpm -groff-perl-[0-9]*.i386.rpm -gzip-[0-9]*.i386.rpm -htdig-[0-9]*.i386.rpm -indexhtml-*.noarch.rpm -info-[0-9]*.i386.rpm -initscripts-[0-9]*.i386.rpm -iputils-[0-9]*.i386.rpm -less-[0-9]*.i386.rpm -libcap-[0-9]*.i386.rpm -libghttp-[0-9]*.i386.rpm -libjpeg-[0-9]*.i386.rpm -libmng-[0-9]*.i386.rpm -libogg-[0-9]*.i386.rpm -libpng-[0-9]*.i386.rpm -libstdc++-[0-9]*.i386.rpm -libtermcap-[0-9]*.i386.rpm -libtiff-[0-9]*.i386.rpm -libtool-libs-[0-9]*.i386.rpm -libunicode-[0-9]*.i386.rpm -libuser-[0-9]*.i386.rpm -libvorbis-[0-9]*.i386.rpm -libxml-[0-9]*.i386.rpm -libxml2-[0-9]*.i386.rpm -libxslt-[0-9]*.i386.rpm -logrotate-[0-9]*.i386.rpm -losetup-[0-9]*.i386.rpm -m4-[0-9]*.i386.rpm -mailcap-*.noarch.rpm -mailx-[0-9]*.i386.rpm -make-[0-9]*.i386.rpm -man-[0-9]*.i386.rpm -man-pages-*.noarch.rpm -mktemp-[0-9]*.i386.rpm -mount-[0-9]*.i386.rpm -mpage-[0-9]*.i386.rpm -ncurses-[0-9]*.i386.rpm -netpbm-[0-9]*.i386.rpm -newt-[0-9]*.i386.rpm -nhpf-[0-9]*.i386.rpm -ntsysv-[0-9]*.i386.rpm -openldap-[0-9]*.i386.rpm -openssh-[0-9]*.i386.rpm -openssh-clients-[0-9]*.i386.rpm -openssh-server-[0-9]*.i386.rpm -openssl-[0-9]*.i386.rpm -pam-[0-9]*.i386.rpm -passwd-[0-9]*.i386.rpm -patch-[0-9]*.i386.rpm -pcre-[0-9]*.i386.rpm -perl-[0-9]*.i386.rpm -perl-Filter-[0-9]*.i386.rpm -krb5-libs-[0-9]*.i386.rpm -libattr-[0-9]*.i386.rpm -hesiod-[0-9]*.i386.rpm -pnm2ppa-[0-9]*.i386.rpm -popt-[0-9]*.i386.rpm -portmap-[0-9]*.i386.rpm -procmail-[0-9]*.i386.rpm -procps-[0-9]*.i386.rpm -psmisc-[0-9]*.i386.rpm -pspell-[0-9]*.i386.rpm -psutils-[0-9]*.i386.rpm -pwdb-[0-9]*.i386.rpm -python-[0-9]*.i386.rpm -python-clap-*.noarch.rpm -python-popt-[0-9]*.i386.rpm -python-xmlrpc-[0-9]*.i386.rpm -python2-[0-9]*.i386.rpm -readline-[0-9]*.i386.rpm -redhat-release-*.noarch.rpm -rootfiles-*.noarch.rpm -rpm-[0-9]*.i386.rpm -sed-[0-9]*.i386.rpm -sendmail-[0-9]*.i386.rpm -setup-*.noarch.rpm -sgml-common-*.noarch.rpm -sh-utils-[0-9]*.i386.rpm -shadow-utils-[0-9]*.i386.rpm -slang-[0-9]*.i386.rpm -slocate-[0-9]*.i386.rpm -specspo-*.noarch.rpm -sysklogd-[0-9]*.i386.rpm -tar-[0-9]*.i386.rpm -tcl-[0-9]*.i386.rpm -tcsh-[0-9]*.i386.rpm -termcap-*.noarch.rpm -textutils-[0-9]*.i386.rpm -time-[0-9]*.i386.rpm -tmpwatch-[0-9]*.i386.rpm -umb-scheme-[0-9]*.i386.rpm -unzip-[0-9]*.i386.rpm -usermode-[0-9]*.i386.rpm -utempter-[0-9]*.i386.rpm -util-linux-[0-9]*.i386.rpm -vim-common-[0-9]*.i386.rpm -vim-minimal-[0-9]*.i386.rpm -vixie-cron-[0-9]*.i386.rpm -which-[0-9]*.i386.rpm -words-*.noarch.rpm -xinetd-[0-9]*.i386.rpm -xml-common-*.noarch.rpm -zip-[0-9]*.i386.rpm -zlib-[0-9]*.i386.rpm -mingetty-[0-9]*.i386.rpm -iproute-[0-9]*.i386.rpm -modutils-[0-9]*.i386.rpm -gmp-[0-9]*.i386.rpm -expat-[0-9]*.i386.rpm -net-tools-[0-9]*.i386.rpm - diff --git a/util-vserver/distrib/rh9.0-minimum b/util-vserver/distrib/rh9.0-minimum deleted file mode 100644 index c96370f..0000000 --- a/util-vserver/distrib/rh9.0-minimum +++ /dev/null @@ -1,163 +0,0 @@ -4Suite-[0-9]*.i386.rpm -Canna-[0-9]*.i386.rpm -Canna-libs-[0-9]*.i386.rpm -Distutils-*.noarch.rpm -MAKEDEV-[0-9]*.i386.rpm -PyXML-[0-9]*.i386.rpm -SysVinit-[0-9]*.i386.rpm -a2ps-[0-9]*.i386.rpm -alchemist-[0-9]*.i386.rpm -anacron-[0-9]*.i386.rpm -ash-[0-9]*.i386.rpm -at-[0-9]*.i386.rpm -audiofile-[0-9]*.i386.rpm -authconfig-[0-9]*.i386.rpm -basesystem-*.noarch.rpm -bash-[0-9]*.i386.rpm -bdflush-[0-9]*.i386.rpm -bzip2-[0-9]*.i386.rpm -bzip2-libs-[0-9]*.i386.rpm -chkconfig-[0-9]*.i386.rpm -cpio-[0-9]*.i386.rpm -cracklib-[0-9]*.i386.rpm -cracklib-dicts-[0-9]*.i386.rpm -crontabs-*.noarch.rpm -cyrus-sasl-[0-9]*.i386.rpm -cyrus-sasl-md5-[0-9]*.i386.rpm -db1-[0-9]*.i386.rpm -db2-[0-9]*.i386.rpm -db3-[0-9]*.i386.rpm -db4-[0-9]*.i386.rpm -libelf-[0-9]*.i386.rpm -dev-[0-9]*.i386.rpm -diffutils-[0-9]*.i386.rpm -dosfstools-[0-9]*.i386.rpm -e2fsprogs-[0-9]*.i386.rpm -ed-[0-9]*.i386.rpm -fam-[0-9]*.i386.rpm -file-[0-9]*.i386.rpm -filesystem-[0-9]*.noarch.rpm -fileutils-[0-9]*.i386.rpm -findutils-[0-9]*.i386.rpm -libacl-[0-9]*.i386.rpm -libgcc-[0-9]*.i386.rpm -freetype-[0-9]*.i386.rpm -gawk-[0-9]*.i386.rpm -gdbm-[0-9]*.i386.rpm -glib-[0-9]*.i386.rpm -glib2-[0-9]*.i386.rpm -glibc-[0-9]*.i386.rpm -glibc-common-[0-9]*.i386.rpm -gnupg-[0-9]*.i386.rpm -grep-[0-9]*.i386.rpm -groff-[0-9]*.i386.rpm -groff-perl-[0-9]*.i386.rpm -gzip-[0-9]*.i386.rpm -htdig-[0-9]*.i386.rpm -indexhtml-*.noarch.rpm -info-[0-9]*.i386.rpm -initscripts-[0-9]*.i386.rpm -iputils-[0-9]*.i386.rpm -less-[0-9]*.i386.rpm -libcap-[0-9]*.i386.rpm -libghttp-[0-9]*.i386.rpm -libjpeg-[0-9]*.i386.rpm -libmng-[0-9]*.i386.rpm -libogg-[0-9]*.i386.rpm -libpng-[0-9]*.i386.rpm -libstdc++-[0-9]*.i386.rpm -libtermcap-[0-9]*.i386.rpm -libtiff-[0-9]*.i386.rpm -libtool-libs-[0-9]*.i386.rpm -libunicode-[0-9]*.i386.rpm -libuser-[0-9]*.i386.rpm -libvorbis-[0-9]*.i386.rpm -libxml-[0-9]*.i386.rpm -libxml2-[0-9]*.i386.rpm -libxslt-[0-9]*.i386.rpm -logrotate-[0-9]*.i386.rpm -losetup-[0-9]*.i386.rpm -m4-[0-9]*.i386.rpm -mailcap-*.noarch.rpm -mailx-[0-9]*.i386.rpm -make-[0-9]*.i386.rpm -man-[0-9]*.i386.rpm -man-pages-*.noarch.rpm -mktemp-[0-9]*.i386.rpm -mount-[0-9]*.i386.rpm -mpage-[0-9]*.i386.rpm -ncurses-[0-9]*.i386.rpm -netpbm-[0-9]*.i386.rpm -newt-[0-9]*.i386.rpm -nhpf-[0-9]*.i386.rpm -ntsysv-[0-9]*.i386.rpm -openldap-[0-9]*.i386.rpm -openssh-[0-9]*.i386.rpm -openssh-clients-[0-9]*.i386.rpm -openssh-server-[0-9]*.i386.rpm -openssl-[0-9]*.i386.rpm -pam-[0-9]*.i386.rpm -passwd-[0-9]*.i386.rpm -patch-[0-9]*.i386.rpm -pcre-[0-9]*.i386.rpm -perl-[0-9]*.i386.rpm -perl-Filter-[0-9]*.i386.rpm -krb5-libs-[0-9]*.i386.rpm -libattr-[0-9]*.i386.rpm -hesiod-[0-9]*.i386.rpm -pnm2ppa-[0-9]*.i386.rpm -popt-[0-9]*.i386.rpm -portmap-[0-9]*.i386.rpm -procmail-[0-9]*.i386.rpm -procps-[0-9]*.i386.rpm -psmisc-[0-9]*.i386.rpm -pspell-[0-9]*.i386.rpm -psutils-[0-9]*.i386.rpm -pwdb-[0-9]*.i386.rpm -python-[0-9]*.i386.rpm -python-clap-*.noarch.rpm -python-popt-[0-9]*.i386.rpm -python-xmlrpc-[0-9]*.i386.rpm -python2-[0-9]*.i386.rpm -readline-[0-9]*.i386.rpm -redhat-release-*.noarch.rpm -rootfiles-*.noarch.rpm -rpm-[0-9]*.i386.rpm -sed-[0-9]*.i386.rpm -sendmail-[0-9]*.i386.rpm -setup-*.noarch.rpm -sgml-common-*.noarch.rpm -sh-utils-[0-9]*.i386.rpm -shadow-utils-[0-9]*.i386.rpm -slang-[0-9]*.i386.rpm -slocate-[0-9]*.i386.rpm -specspo-*.noarch.rpm -sysklogd-[0-9]*.i386.rpm -tar-[0-9]*.i386.rpm -tcl-[0-9]*.i386.rpm -tcsh-[0-9]*.i386.rpm -termcap-*.noarch.rpm -textutils-[0-9]*.i386.rpm -time-[0-9]*.i386.rpm -tmpwatch-[0-9]*.i386.rpm -umb-scheme-[0-9]*.i386.rpm -unzip-[0-9]*.i386.rpm -usermode-[0-9]*.i386.rpm -utempter-[0-9]*.i386.rpm -util-linux-[0-9]*.i386.rpm -vim-common-[0-9]*.i386.rpm -vim-minimal-[0-9]*.i386.rpm -vixie-cron-[0-9]*.i386.rpm -which-[0-9]*.i386.rpm -words-*.noarch.rpm -xinetd-[0-9]*.i386.rpm -xml-common-*.noarch.rpm -zip-[0-9]*.i386.rpm -zlib-[0-9]*.i386.rpm -mingetty-[0-9]*.i386.rpm -iproute-[0-9]*.i386.rpm -modutils-[0-9]*.i386.rpm -gmp-[0-9]*.i386.rpm -expat-[0-9]*.i386.rpm -net-tools-[0-9]*.i386.rpm - diff --git a/util-vserver/distrib/rh9.0.93/apt/rpmpriorities b/util-vserver/distrib/rh9.0.93/apt/rpmpriorities new file mode 100644 index 0000000..08cc7af --- /dev/null +++ b/util-vserver/distrib/rh9.0.93/apt/rpmpriorities @@ -0,0 +1,6 @@ +Essential: + basesystem + coreutils + filesystem + glibc + setup diff --git a/util-vserver/distrib/rh9.0.93/apt/sources.list b/util-vserver/distrib/rh9.0.93/apt/sources.list new file mode 100644 index 0000000..4a22cd3 --- /dev/null +++ b/util-vserver/distrib/rh9.0.93/apt/sources.list @@ -0,0 +1,2 @@ +rpm http://ftp.ultra.csn.tu-chemnitz.de/pub/mirror/RedHat/.apt redhat/beta os +rpm-src http://ftp.ultra.csn.tu-chemnitz.de/pub/mirror/RedHat/.apt redhat/beta os diff --git a/util-vserver/distrib/rh9.0.93/pkgs/01 b/util-vserver/distrib/rh9.0.93/pkgs/01 new file mode 100644 index 0000000..1a5ef72 --- /dev/null +++ b/util-vserver/distrib/rh9.0.93/pkgs/01 @@ -0,0 +1 @@ +glibc diff --git a/util-vserver/distrib/rh9.0.93/pkgs/02 b/util-vserver/distrib/rh9.0.93/pkgs/02 new file mode 100644 index 0000000..9ec5d2b --- /dev/null +++ b/util-vserver/distrib/rh9.0.93/pkgs/02 @@ -0,0 +1,3 @@ +--reinstall + +filesystem diff --git a/util-vserver/distrib/rh9/pkgs/01 b/util-vserver/distrib/rh9/pkgs/01 new file mode 100644 index 0000000..1a5ef72 --- /dev/null +++ b/util-vserver/distrib/rh9/pkgs/01 @@ -0,0 +1 @@ +glibc diff --git a/util-vserver/distrib/rh9/pkgs/02 b/util-vserver/distrib/rh9/pkgs/02 new file mode 100644 index 0000000..9ec5d2b --- /dev/null +++ b/util-vserver/distrib/rh9/pkgs/02 @@ -0,0 +1,3 @@ +--reinstall + +filesystem diff --git a/util-vserver/distrib/sample.conf b/util-vserver/distrib/sample.conf deleted file mode 100644 index 7e1b7a6..0000000 --- a/util-vserver/distrib/sample.conf +++ /dev/null @@ -1,49 +0,0 @@ -# Select an unused context (this is optional) -# The default is to allocate a free context on the fly -# In general you don't need to force a context -#S_CONTEXT= -# Select the IP number assigned to the virtual server -# This IP must be one IP of the server, either an interface -# or an IP alias -IPROOT=1.2.3.4 -# The netmask and broadcast are computed by default from IPROOTDEV -#IPROOTMASK= -#IPROOTBCAST= -# You can define on which device the IP alias will be done -# The IP alias will be set when the server is started and unset -# when the server is stopped -IPROOTDEV=eth0 -# Uncomment the onboot line if you want to enable this -# virtual server at boot time -#ONBOOT=yes -# You can set a different host name for the vserver -# If empty, the host name of the main server is used -S_HOSTNAME=somename.somedomain.com -# You can set a different NIS domain for the vserver -# If empty, the current on is kept -# Set it to "none" to have no NIS domain set -S_DOMAINNAME= -# You can set the priority level (nice) of all process in the vserver -# Even root won't be able to raise it -S_NICE= -# You can set various flags for the new security context -# lock: Prevent the vserver from setting new security context -# sched: Merge scheduler priority of all processes in the vserver -# so that it acts a like a single one. -# nproc: Limit the number of processes in the vserver according to ulimit -# (instead of a per user limit, this becomes a per vserver limit) -# private: No other process can join this security context. Even root -# Do not forget the quotes around the flags -S_FLAGS="lock nproc" -# You can set various ulimit flags and they will be inherited by the -# vserver. You enter here various command line argument of ulimit -# ULIMIT="-H -u 200" -# The example above, combined with the nproc S_FLAGS will limit the -# vserver to a maximum of 200 processes -ULIMIT="-H -u 1000" -# You can set various capabilities. By default, the vserver are run -# with a limited set, so you can let root run in a vserver and not -# worry about it. He can't take over the machine. In some cases -# you can to give a little more capabilities (such as CAP_NET_RAW) -# S_CAPS="CAP_NET_RAW" -S_CAPS="" diff --git a/util-vserver/distrib/sample.sh b/util-vserver/distrib/sample.sh deleted file mode 100755 index 8e8c047..0000000 --- a/util-vserver/distrib/sample.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -case $1 in -pre-start) - ;; -post-start) - ;; -pre-stop) - ;; -post-stop) - ;; -*) - echo $0 pre-start - echo $0 pre-stop - echo $0 post-start - echo $0 post-stop - ;; -esac