Sophie

Sophie

distrib > Fedora > 14 > i386 > by-pkgid > 14647147f9be49098947dca8ad859dc0 > scriptlet

mod_selinux-2.2.2454-2.fc13.i686.rpm

POSTIN

/bin/sh
/sbin/fixfiles -R mod_selinux restore || :

for policy in targeted mls
do
    /usr/sbin/semodule -s ${policy} \
        -i /usr/share/selinux/${policy}/mod_selinux.pp 2>/dev/null || :
done

POSTUN

/bin/sh
# unload policy, if rpm -e
if [ $1 -eq 0 ]; then
    for policy in targeted mls
    do
        /usr/sbin/semodule -s ${policy} -r mod_selinux 2>/dev/null || :
    done
fi