Sophie

Sophie

distrib > Fedora > 18 > i386 > by-pkgid > c305be2741f323b7f488ae581f742c9a > scriptlet

atop-1.27-1.fc18.i686.rpm

PREUN

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

POSTIN

/bin/sh
if [ $1 -eq 1 ] ; then
    # Initial installation
    /bin/systemctl daemon-reload >/dev/null 2>&1 || :
fi

POSTUN

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

Triggers

atop < 1.26-1

/bin/sh
# Save the current service runlevel info
# User must manually run systemd-sysv-convert --apply atop
# to migrate them to systemd targets
/usr/bin/systemd-sysv-convert --save atop >/dev/null 2>&1 ||:

# Run these because the SysV package being removed won't do them
/sbin/chkconfig --del atop >/dev/null 2>&1 || :
/bin/systemctl try-restart atop.service >/dev/null 2>&1 || :