mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
11 lines
185 B
Text
11 lines
185 B
Text
|
# arg 1: the new package version
|
||
|
# arg 2: the old package version
|
||
|
|
||
|
post_install () {
|
||
|
[ ! -f /var/log/bftpd.log ] && touch /var/log/bftpd.log
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install $1
|
||
|
}
|