Sophie

Sophie

distrib > Fedora > 19 > i386 > by-pkgid > 4abb6d4b43200e4fbbee945f4993073f > scriptlet

profile-sync-daemon-5.51-1.fc19.noarch.rpm

PREUN

/bin/sh
if [ $1 -eq 0 ]; then
 setsebool -P rsync_full_access 0 >/dev/null 2>&1 || :
fi

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

POSTIN

/bin/sh
if [ $1 -eq 1 ]; then 
 setsebool -P rsync_full_access 1 >/dev/null 2>&1 || :
fi

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