45 lines
637 B
Bash
Executable File
45 lines
637 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
|
|
chroot ${prefix}/usr/bin/yum clean all
|
|
|
|
#
|
|
# Log our finish
|
|
#
|
|
logMessage Script $0 finished
|