Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > 9ae9decebd5645acbace1d772316a2e9 > scriptlet

samba-4.0.11-1.fc18.i686.rpm

PREUN

/bin/sh

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

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

POSTIN

/bin/sh

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

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

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