/var/lib/dpkg/info/postgresql-14.preinst
#!/bin/sh

set -e

MAJOR_VER="${DPKG_MAINTSCRIPT_PACKAGE#postgresql-}"
CATVERSION="202107181" # set by override_dh_installdeb

case $1 in
    install|upgrade)
        if [ "$2" ]; then
            . /usr/share/postgresql-common/maintscripts-functions
            preinst_check_catversion "$MAJOR_VER" "$CATVERSION"
        fi ;;
esac



exit 0