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