updated on Sat Jan 14 00:11:12 UTC 2012
[aur-mirror.git] / portbunny / portbunny.install
blobf92375586b8e223ef1f76e5576e4ae67c59df47d
1 # arg 1:  the new package version
2 post_install() {
3   /sbin/depmod -a
6 # arg 1:  the new package version
7 # arg 2:  the old package version
8 post_upgrade() {
9   /sbin/depmod -a
12 post_remove() {
13   /sbin/depmod -a
16 op=$1
17 shift
18 [ "$(type -t "$op")" = "function" ] && $op "$@"
20 # vim:set ts=2 sw=2 et: