27

I want to reinstall a package on CentOS and start from scratch. In Debian, I can do a apt-get purge foo and it'll remove all config files for foo. yum remove foo doesn't remove the config files. Is there any way to do apt-get purge foo using yum?

Amandasaurus
  • 30,211
  • 62
  • 184
  • 246
  • 3
    Note that the only reason for apt-get purge is because apt-get remove leaves config. files in place, yum remove does not do that (they are moved to .rpmsave files if they have been changed, in fact it will even tell you it's doing so). – James Antill Jul 22 '09 at 18:45

3 Answers3

13

Do

yum remove package
yum install package

on command line. If there is any config file which is not replaced during installation then message will be printed on screen that the file has been saved with different name. Move new file to old file.

This is hoping there are very less configuration files of package which you are trying to re-install.

Saurabh Barjatiya
  • 4,643
  • 2
  • 29
  • 34
9

Not terribly elegant, but it works:

for package in package1 package2 package3
do
  echo "removing config files for $package"
  for file in $(rpm -q --configfiles $package)
  do
    echo "  removing $file"
    rm -f $file
  done
  rpm -e $package
done
James F
  • 6,549
  • 1
  • 25
  • 23
0

rpm -e <package-name> will do the trick if it's still available

linux64kb
  • 101
  • 2