Sophie

Sophie

distrib > Fedora > 20 > x86_64 > by-pkgid > 06435ae45649f19d75e8dbf4f62edd44 > scriptlet

flannel-0.2.0-7.fc20.x86_64.rpm

PREUN

/bin/sh
# clean tempdir and workdir on removal or upgrade

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

POSTIN

/bin/sh

if [ $1 -eq 1 ] ; then 
        # Initial installation 
        systemctl preset flanneld.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 flanneld.service >/dev/null 2>&1 || : 
fi