10 lines
264 B
Bash
10 lines
264 B
Bash
## arg 1: the new package version
|
|
## arg 2: the old package version
|
|
post_upgrade() {
|
|
[ $(vercmp "$2" '1.0.1-2') -gt 0 ] || cat <<EOF
|
|
Config file have been moved from /etc/conntrackd/conntrackd.conf to /etc/conntrackd.conf.
|
|
EOF
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 ft=sh et:
|