Commit | Line | Data |
---|---|---|
1 | post_install() { | |
2 | echo 'Creating /var/log/messages symlink to improve compatibility...' | |
3 | ln -sf messages.log /var/log/messages | |
4 | } | |
5 | ||
6 | # arg 1: the new package version | |
7 | # arg 2: the old package version | |
8 | post_upgrade() { | |
9 | post_install $1 | |
10 | } | |
11 | ||
12 | # arg 1: the old package version | |
13 | pre_remove() { | |
14 | true | |
15 | } |