updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / ipwireless_cs / install
blob258ef6aed777684c492f9b43e0ef113b797040d6
1 # This is a default template for a post-install scriptlet.  You can
2 # remove any functions you don't need (and this header).
4 # arg 1:  the new package version
5 pre_install() {
6   /bin/true
9 # arg 1:  the new package version
10 post_install() {
11   /sbin/depmod -a
12   /bin/true
15 # arg 1:  the new package version
16 # arg 2:  the old package version
17 pre_upgrade() {
18   /bin/true
21 # arg 1:  the new package version
22 # arg 2:  the old package version
23 post_upgrade() {
24   /sbin/depmod -a
25   /bin/true
28 # arg 1:  the old package version
29 pre_remove() {
30   /bin/true
33 # arg 1:  the old package version
34 post_remove() {
35   /bin/true
38 op=$1
39 shift
40 [ "$(type -t "$op")" = "function" ] && $op "$@"
42 # vim:set ts=2 sw=2 et: