Sophie

Sophie

distrib > Mageia > 8 > armv7hl > by-pkgid > 0af587fc2b1ec3c164f1e86a9ab78470 > scriptlet

fcoe-utils-1.0.32-3.mga8.armv7hl.rpm

PREUN

/bin/sh

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

POSTIN

/bin/sh

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

POSTUN

/bin/sh

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