blob: a5cf251f4f4161651bdbf3b01602b548bad64927 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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#
|