blob: 25ebfa58b3539a0115844c4b0247ba142b5846c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# arg 1: the new package version
# arg 2: the old package version
post_install () {
[ ! -f /var/log/bftpd.log ] && touch /var/log/bftpd.log
true
}
post_upgrade() {
post_install $1
}
|