Merge all centos/fedora 99-clean-image into common/99-clean-image-rpm
Rename previous common/99-clean-image to common/99-clean-image-deb; adjust all links
This commit is contained in:
@@ -1,50 +0,0 @@
|
||||
#!/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
|
||||
1
hooks/centos-4/99-clean-image
Symbolic link
1
hooks/centos-4/99-clean-image
Symbolic link
@@ -0,0 +1 @@
|
||||
../common/99-clean-image-rpm
|
||||
@@ -1,50 +0,0 @@
|
||||
#!/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
|
||||
1
hooks/centos-5/99-clean-image
Symbolic link
1
hooks/centos-5/99-clean-image
Symbolic link
@@ -0,0 +1 @@
|
||||
../common/99-clean-image-rpm
|
||||
50
hooks/common/99-clean-image-rpm
Executable file
50
hooks/common/99-clean-image-rpm
Executable file
@@ -0,0 +1,50 @@
|
||||
#!/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
|
||||
@@ -1 +1 @@
|
||||
../common/99-clean-image
|
||||
../common/99-clean-image-deb
|
||||
@@ -1 +1 @@
|
||||
../common/99-clean-image
|
||||
../common/99-clean-image-deb
|
||||
@@ -1 +1 @@
|
||||
../common/99-clean-image
|
||||
../common/99-clean-image-deb
|
||||
@@ -1,50 +0,0 @@
|
||||
#!/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
|
||||
1
hooks/fedora-core-6/99-clean-image
Symbolic link
1
hooks/fedora-core-6/99-clean-image
Symbolic link
@@ -0,0 +1 @@
|
||||
../common/99-clean-image-rpm
|
||||
@@ -1 +1 @@
|
||||
../common/99-clean-image
|
||||
../common/99-clean-image-deb
|
||||
@@ -1 +1 @@
|
||||
../common/99-clean-image
|
||||
../common/99-clean-image-deb
|
||||
Reference in New Issue
Block a user