Sophie

Sophie

distrib > Fedora > 18 > x86_64 > by-pkgid > 30722bc0996b510f89291b1258ac8b09 > scriptlet

clamav-scanner-systemd-0.98-2.fc18.noarch.rpm

PREUN

/bin/sh

if [ $1 -eq 0 ] ; then 
        # Package removal, not upgrade 
        /usr/bin/systemctl --no-reload disable clamd@scan.service > /dev/null 2>&1 || : 
        /usr/bin/systemctl stop clamd@scan.service > /dev/null 2>&1 || : 
fi

POSTIN

/bin/sh

if [ $1 -eq 1 ] ; then 
        # Initial installation 
        /usr/bin/systemctl preset clamd@scan.service >/dev/null 2>&1 || : 
fi

POSTUN

/bin/sh

/usr/bin/systemctl daemon-reload >/dev/null 2>&1 || : 
if [ $1 -ge 1 ] ; then 
        # Package upgrade, not uninstall 
        /usr/bin/systemctl try-restart clamd@scan.service >/dev/null 2>&1 || : 
fi