logrotate PKGBUILD updated
[Archlinux-Stable.git] / install.proto
blobcd54cbb7884fa30131994a448e552347a6e47826
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   /bin/true
14 # arg 1:  the new package version
15 # arg 2:  the old package version
16 pre_upgrade() {
17   /bin/true
20 # arg 1:  the new package version
21 # arg 2:  the old package version
22 post_upgrade() {
23   /bin/true
26 # arg 1:  the old package version
27 pre_remove() {
28   /bin/true
31 # arg 1:  the old package version
32 post_remove() {
33   /bin/true
36 op=$1
37 shift
38 [ "$(type -t "$op")" = "function" ] && $op "$@"
40 # vim:set ts=2 sw=2 et: