blob: c1ea8055e3002855d5634257e0e7a20cc6fb1f8c (
plain)
1
2
3
4
5
6
7
8
9
|
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
if echo $2 | fgrep 0.4; then
echo ">>>> Note that the default config file location has changed"
echo ">>>> The default location is now /etc/mta-sts-daemon.yml"
echo ">>>> Your old config file in /etc/postfix/mta-sts-daemon.yml is NOT moved automatically!"
fi
}
|