e2fsprogs/debian/e2fsprogs.preinst
Theodore Ts'o 541d173d91 Update with the Debian package e2fsprogs-1.26-1.
Clarify and clean up the badblocks man page and the com_err info file.
2002-02-23 21:23:26 -05:00

17 lines
374 B
Bash

#!/bin/sh
dpkg --assert-support-predepends 2> /dev/null
case $? in
0) ;; # fine, supported
1) exit 1 ;; # dpkg writes an error message to stdio
2) cat <<EOT
This package requires features of dpkg unavailable in this version.
Please upgrade to a more recent version (>=1.1.0) of dpkg.
EOT
exit 1 ;; # dpkg didn't recognise the option
*) exit 2 ;;
esac
#DEBHELPER#