Sophie

Sophie

distrib > Mandriva > 2006.0 > x86_64 > by-pkgid > 804166a05c4c6dfb080771e2eb94e300 > scriptlet

am-utils-6.0.9-9mdk.x86_64.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