summaryrefslogtreecommitdiff
path: root/debian/preinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/preinst')
-rwxr-xr-xdebian/preinst30
1 files changed, 0 insertions, 30 deletions
diff --git a/debian/preinst b/debian/preinst
deleted file mode 100755
index e2d7244d..00000000
--- a/debian/preinst
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /bin/sh
-
-set -e
-
-case "$1" in
- install|upgrade)
- dpkg --assert-support-predepends
- if [ -n "$2" ]; then
- version=$2
- if dpkg --compare-versions $version le-nl 4.1-15 ; then
- echo /etc/cron.daily/find has a new format.
- echo Consider using the new /etc/cron.daily/find
- echo and modifing /etc/updatedb.conf
- echo Old versions of /etc/cron.daily/find may not work
- fi
- fi
- ;;
-
- abort-upgrade)
- ;;
-
- *)
- echo "preinst called with unknown argument \`$1'" >&2
- exit 0
- ;;
-esac
-
-
-
-