summaryrefslogtreecommitdiffstats
path: root/debian/postgresql-13.prerm
blob: 828c6fbe9f59a2866527bdb0aab997ba286d704e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

VERSION=${DPKG_MAINTSCRIPT_PACKAGE##*-}

#DEBHELPER#

. /usr/share/postgresql-common/maintscripts-functions

stop_version $VERSION

if [ "$1" = remove ]; then
    remove_version $VERSION
fi