Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 2c47464dfa62fb348082bd8d6cafb690 > scriptlet

iipsrv-1.0.0-0.7.git0b63de7.fc18.x86_64.rpm

PREIN

/bin/sh
/usr/sbin/useradd -r -s /sbin/nologin iipsrv 2> /dev/null || :

PREUN

/bin/sh

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

POSTIN

/bin/sh

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