Sophie

Sophie

distrib > Mandriva > 2007.0 > i586 > media > contrib-release > by-pkgid > 77e42b812fd1efa707d3bfda1854dee9 > scriptlet

am-utils-6.1.5-1mdv2007.0.i586.rpm

PREIN

/bin/sh
# Check if we have an old fashioned amd.conf and rename if to amd.net
if [ "$1" = "0" ] ; then
    if grep -q "auto_dir" /etc/amd.conf 2>/dev/null > /dev/null ; then
	# this is okay
	exit 0
    else
	# this needs to be renamed. Still, if /etc/amd.net exists, then
	# don't bother renamig it. RPM will handle it better than us here.
	if [ -e /etc/amd.net ] ; then
	    exit 0
	else
	    mv -f /etc/amd.conf /etc/amd.net
	fi
    fi
fi
exit 0

PREUN

/bin/sh
/usr/share/rpm-helper/del-service am-utils $1 amd 
if [ $1 = 0 ]; then
   /sbin/install-info --delete /usr/share/info/am-utils.info.bz2 /usr/share/info/dir
fi

POSTIN

/bin/sh
/usr/share/rpm-helper/add-service am-utils $1 amd 
/sbin/install-info /usr/share/info/am-utils.info.bz2 /usr/share/info/dir