Sophie

Sophie

distrib > Fedora > 20 > i386 > by-pkgid > 8c8c3e28ff30e797b713db4fdd8acfa3 > scriptlet

gridengine-qmaster-2011.11p1-22.fc20.i686.rpm

PREUN

/bin/sh

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

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

POSTIN

/bin/sh

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

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