core/pam/pam.install

13 lines
270 B
Plaintext
Raw Normal View History

2010-03-13 23:25:19 +08:00
# arg 1: the new package version
post_install() {
# need to run this immediately -- pacman only runs it at the end of
# all package installs
2014-09-27 12:12:32 +08:00
ldconfig -r .
2010-03-13 23:25:19 +08:00
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
post_install $1
}