- fix typo
[bootcd.git] / build.sh
index 194c747..5cf4a4f 100755 (executable)
--- a/build.sh
+++ b/build.sh
@@ -128,6 +128,12 @@ EOF
     echo "install boot cd base rpms"
     yum -c yum.conf --installroot=$CD_ROOT -y groupinstall $BOOTCD_YUM_GROUP
 
+    # Clean yum cache
+    yum -c yum.conf --installroot=$CD_ROOT -y clean all
+
+    # Remove stale RPM locks
+    rm -f $CD_ROOT/var/lib/rpm/__db*
+
     # Retrieve all of the packagereq declarations in the BootCD group of the yumgroups.xml file
     echo "checking to make sure rpms were installed"
     packages=$(curl $yumgroups | sed -n -e '/<name>BootCD<\/name>/,/<name>/{ s/.*<packagereq.*>\(.*\)<\/packagereq>/\1/p }')