From e061ef9ff2eeeaffe0a61a19c26b1279a208861d Mon Sep 17 00:00:00 2001 From: Karanbir Singh Date: Nov 21 2011 02:33:35 +0000 Subject: the old script is now gone --- diff --git a/utils/cleanp_vm.sh b/utils/cleanp_vm.sh deleted file mode 100644 index e90491a..0000000 --- a/utils/cleanp_vm.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -# you will almost never want to run this script. -# $1 = file name ( full path ) with rpms to retain - -rm /tmp/yum-cleanup - -for f in `rpm -qa`; do - pn=$(rpm --qf "|%{name}|" -q $f) - if [ `grep $pn $1 | wc -l ` -lt 1 ] ; then - echo 'erase ' $f >> /tmp/yum-cleanup - fi -done -cat $1 | sed -e 's/|//g' | sed -e 's/^/install /' >> /tmp/yum-cleanup - -if [ `uname -m` = 'x86_64' ]; then - yum -y erase *.i?86 - yum -y --exclude=*.i?86 shell /tmp/yum-cleanup -else - yum -y shell /tmp/yum-cleanup -fi - -yum -y reinstall \* -cd /etc -for x in `find . -maxdepth=2 -type f -name \*.rpmnew`; do - a=$( echo $x | sed -e 's/.rpmnew//' ) - rm -f $a - mv $x $a -done