Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > 432649b9c9c40f1404e5c9e77a1a8b7c > scriptlet

dnf-4.2.6-1.mga7.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