updated on Sat Jan 21 16:18:39 UTC 2012
[aur-mirror.git] / ifled / ifled.install
blob26402fc6f5a59c6dfe4c94b0836a41cc8d8c8278
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   echo ">>>>"
12   echo ">>>> Please have a look at /etc/sysconfig/ifled to configure ifled."
13   echo ">>>>"
15   /bin/true
18 # arg 1:  the new package version
19 # arg 2:  the old package version
20 pre_upgrade() {
21   /bin/true
24 # arg 1:  the new package version
25 # arg 2:  the old package version
26 post_upgrade() {
27   post_install $1
29   /bin/true
32 # arg 1:  the old package version
33 pre_remove() {
34   /bin/true
37 # arg 1:  the old package version
38 post_remove() {
39   /bin/true
42 op=$1
43 shift
44 [ "$(type -t "$op")" = "function" ] && $op "$@"
46 # vim:set ts=2 sw=2 et: