Sophie

Sophie

distrib > Mageia > 8 > aarch64 > by-pkgid > 8d66a50c80c8e5f682d2bfc9f0e76481 > scriptlet

dnf-4.6.0-1.mga8.noarch.rpm

PREUN

/bin/sh

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

POSTIN

/bin/sh

 
if [ $1 -eq 1 ] && [ -x /usr/bin/systemctl ]; then 
        # Initial installation 
        /usr/bin/systemctl --no-reload preset dnf-makecache.timer || : 
fi

POSTUN

/bin/sh

 
if [ $1 -ge 1 ] && [ -x /usr/bin/systemctl ]; then 
        # Package upgrade, not uninstall 
        /usr/bin/systemctl try-restart dnf-makecache.timer || : 
fi