blob: ba08b3af1ff48fbfa0616aefa8c94ef4cbee8fc2 (
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() {
if [ "`vercmp $2 4.0`" -lt 0 ]
then
echo "Restart crond, since you're upgrading to the dcron 4.x series."
fi
}
# vim:set ts=2 sw=2 et:
|