Displaying 1 result from an estimated 1 matches for "rpms_url_base".
2005 Sep 03
1
CentOS bootstrapper for chroot(2) environment
...ly a bit customized CentOS kernel package rebuild.
Regards,
Lace
-------------- next part --------------
#! /bin/bash
# Bootstrap for: CentOS-4.1
# $Id: centos-bootstrap,v 1.4 2005/09/03 03:07:17 short Exp $
# Latest:
# http://cvs.jankratochvil.net/viewcvs/nethome/src/centos-bootstrap?rev=HEAD
RPMS_URL_BASE=http://rsync.atworks.co.jp/centos/4.1/os/i386/CentOS/RPMS
if test $# != 1;then echo >&2 "Syntax: $0 <target-root-directory(DELETED!)>";exit 1;fi
ROOT="$1"
if test "${ROOT#/}" = "$ROOT";then echo >&2 "Absolute pathname required: $ROO...