Sophie

Sophie

distrib > * > 2008.0 > x86_64 > by-pkgid > 5cda9a2de57bc9e03ebe2083ef65c333 > files > 25

vsftpd-2.0.5-8mdv2008.0.src.rpm

#!/bin/bash
#move old config files and symlink them
#shipped with vsftpd-2.0.1-6
PREFIX="vsftpd"
for file in $( ls /etc/${PREFIX}.* ); do
    if [ ! -L $file ]; then
        new=`echo $file | sed s/${PREFIX}\./${PREFIX}\\\\//g | sed s/\.rpmsave//g`
        mv -f ${file} ${new}
	ln -s ${new} ${file}
	echo $file moved to $new
    fi
done