blob: a5694e901350104a0b95e6ef331a4b61fac68f92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# arg 1: the new package version
post_install() {
# make sure the system can see authlib libraries
ldconfig
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
}
|