#!/bin/sh

set -e

PGBINDIR=/usr/lib/postgresql/12/bin

case "$1" in
  remove|deconfigure)
    update-alternatives --quiet --remove pg_filedump $PGBINDIR/pg_filedump
    ;;
esac

#DEBHELPER#

