Sophie

Sophie

distrib > Fedora > 20 > x86_64 > by-pkgid > 97c9695429a997082fab52c2474f18f4 > scriptlet

ksm-1.6.2-12.fc20.x86_64.rpm

PREUN

/bin/sh

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

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

POSTIN

/bin/sh

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

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

POSTUN

/bin/sh

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

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