mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 18:42:14 +08:00
11 lines
233 B
Plaintext
11 lines
233 B
Plaintext
|
## 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:
|