*** empty log message ***
[findutils.git] / debian / preinst
blob7f822c7c86edd30dc4295492b7534144fbbd340d
1 #! /bin/sh
3 set -e
5 case "$1" in
6 install|upgrade)
7 dpkg --assert-support-predepends
8 version=$2
9 if dpkg --compare-versions $version le-nl 4.1-14 ; then
10 echo /etc/cron.daily/find has a new format.
11 echo Consider using the new /etc/cron.daily/find
12 echo and modifing /etc/find.conf
16 abort-upgrade)
20 echo "preinst called with unknown argument \`$1'" >&2
21 exit 0
23 esac