blob: 5f03b6e24e68f2f3d28dc08294b7410ac25d8834 (
plain)
1
2
3
4
5
6
7
8
9
10
|
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
[ $(vercmp "$2" '0.0.3_4-2') -gt 0 ] || cat <<EOF
Config file have been moved from /etc/arptables/arptables to /etc/arptables.conf.
You can revert to the previous location by editing /etc/conf.d/arptables.
EOF
}
# vim:set ts=2 sw=2 ft=sh et:
|