diff options
Diffstat (limited to '')
-rw-r--r-- | debian/postgresql-13.postinst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/postgresql-13.postinst b/debian/postgresql-13.postinst new file mode 100644 index 0000000..be69843 --- /dev/null +++ b/debian/postgresql-13.postinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +VERSION=${DPKG_MAINTSCRIPT_PACKAGE##*-} + +if [ "$1" = configure ]; then + . /usr/share/postgresql-common/maintscripts-functions + + configure_version $VERSION "$2" +fi + +#DEBHELPER# |