Sophie

Sophie

distrib > Mageia > 5 > x86_64 > by-pkgid > 8bd5b042ef100d45a87f7a256037eef0 > scriptlet

am-utils-6.1.5-15.mga5.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 if [[ -f /usr/share/info/am-utils.xz ]]; then /sbin/install-info /usr/share/info/am-utils.xz --dir=/usr/share/info/dir --remove ; fi; fi

POSTIN

/bin/sh
/usr/share/rpm-helper/add-service am-utils $1 amd 

if [[ -f /usr/share/info/am-utils.xz ]]; then /sbin/install-info /usr/share/info/am-utils.xz --dir=/usr/share/info/dir; fi