Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 2f577312033d9fec2f62ecc3a00d350d > scriptlet

Glide3-20050815-10.fc13.i686.rpm

POSTIN

/bin/sh
/sbin/ldconfig
# Set SELinux file_context in the policy
semanage fcontext -a -t textrel_shlib_t '/usr/lib/libglide3-v.\.so' 2>/dev/null || :
# Actually change the context
chcon -t textrel_shlib_t /usr/lib/libglide3-v?.so || :

POSTUN

/bin/sh
/sbin/ldconfig
# SELinux support
if [ $1 -eq 0 ]; then  # final removal
  semanage fcontext -d -t textrel_shlib_t '/usr/lib/libglide3-v.\.so' 2>/dev/null || :
fi