#!/bin/bash
# bash script to install yum + dependencies on a CentOS 5.x vps from Blacknight
# download and chmod 755 and then execute it.
# Copyright Blacknight 2008

MIRROR=http://ftp.heanet.ie/pub/centos/5/os/i386/CentOS/
rpm -Uvh \
$MIRROR/m2crypto-0.16-6.el5.3.i386.rpm   \
$MIRROR/python-elementtree-1.2.6-5.i386.rpm  \
$MIRROR/python-sqlite-1.1.7-1.2.1.i386.rpm  \
$MIRROR/python-urlgrabber-3.1.0-5.el5.noarch.rpm  \
$MIRROR/rpm-python-4.4.2.3-9.el5.i386.rpm \
$MIRROR/yum-3.2.19-18.el5.centos.noarch.rpm \
$MIRROR/yum-metadata-parser-1.1.2-2.el5.i386.rpm \
$MIRROR/python-iniparse-0.2.3-4.el5.noarch.rpm \
$MIRROR/yum-fastestmirror-1.1.16-13.el5.centos.noarch.rpm

