1
0
mirror of synced 2026-02-12 18:37:15 +00:00
Files
xen-tools.xen-tools/hooks/centos-4/99-clean-image
steve 17a6a5e127 2007-07-16 02:18:46 by steve
Installation of Centos 4 & 5 & FC6 works :)
2007-07-16 02:18:47 +00:00

50 lines
759 B
Bash
Executable File

#!/bin/sh
#
# This script cleans the yum database on the new system.
#
# Steve
# --
# http://www.steve.org.uk/
prefix=$1
#
# Source our common functions
#
if [ -e /usr/lib/xen-tools/common.sh ]; then
. /usr/lib/xen-tools/common.sh
else
. ./hooks/common.sh
fi
#
# Log our start
#
logMessage Script $0 starting
#
# Clean up RPM files.
#
logMessage Cleaning .rpm* files.
find ${prefix}/ -name '*.rpmorig' -exec rm -f \{\} \;
find ${prefix}/ -name '*.rpmnew' -exec rm -f \{\} \;
#
# Clean yum
#
logMessage Cleaning Yum Repository
if [ ! -d ${prefix}/proc ]; then
mkdir -p ${prefix}/proc
fi
mount -o bind /proc ${prefix}/proc
chroot ${prefix} /usr/bin/yum clean all
umount ${prefix}/proc
#
# Log our finish
#
logMessage Script $0 finished