Sophie

Sophie

distrib > Mageia > 6 > armv7hl > by-pkgid > 600c0518a9b1f0147f3b3d2c6326dc4f > scriptlet

dnf-2.5.1-2.mga6.noarch.rpm

PREUN

/bin/sh

if [ $1 -eq 0 ] ; then 
        # Package removal, not upgrade 
        systemctl --no-reload disable --now dnf-makecache.timer > /dev/null 2>&1 || : 
fi

POSTIN

/bin/sh

if [ $1 -eq 1 ] ; then 
        # Initial installation 
        systemctl --no-reload preset dnf-makecache.timer >/dev/null 2>&1 || : 
fi

POSTUN

/bin/sh

if [ $1 -ge 1 ] ; then 
        # Package upgrade, not uninstall 
        systemctl try-restart dnf-makecache.timer >/dev/null 2>&1 || : 
fi