Sophie

Sophie

distrib > Momonga > 7 > x86_64 > media > updates > by-pkgid > b2bb082828fe9e9b57de3a3d566ae2f1 > scriptlet

libvirt-client-0.8.8-3m.mo7.x86_64.rpm

PREUN

/bin/sh

if [ $1 = 0 ]; then
    /sbin/chkconfig --del libvirt-guests
    rm -f /var/lib/libvirt/libvirt-guests
fi

POSTIN

/bin/sh

/sbin/ldconfig
/sbin/chkconfig --add libvirt-guests
if [ $1 -ge 1 ]; then
    level=$(/sbin/runlevel | /bin/cut -d ' ' -f 2)
    if /sbin/chkconfig --list libvirt-guests | /bin/grep -q $level:on ; then
        # this doesn't do anything but allowing for libvirt-guests to be
        # stopped on the first shutdown
        /sbin/service libvirt-guests start > /dev/null 2>&1 || true
    fi
fi