1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
post_install() { if [ -x /usr/bin/ldconfig ]; then /usr/bin/ldconfig fi } post_upgrade() { if [ -x /usr/bin/ldconfig ]; then /usr/bin/ldconfig fi } post_remove() { if [ -x /usr/bin/ldconfig ]; then /usr/bin/ldconfig fi }