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