blob: ad9a39d54a3c3eb8a9ded5881a7291b3474bb0cc (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_upgrade() {
if [[ $(vercmp $2 4.2.6.p3) -le 0 ]]; then
cat <<EOF
==> The file /etc/conf.d/ntp-client.conf has been renamed /etc/conf.d/ntpd.conf
==> If you made changes to the former, please update the latter.
EOF
fi
}
|