summaryrefslogtreecommitdiff
path: root/debian/taler-exchange.prerm
blob: 88a747cb7149a792b601aa6d3fa92c9be7bc7ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e


if [ -f /usr/share/debconf/confmodule ]; then
    . /usr/share/debconf/confmodule
fi
. /usr/share/dbconfig-common/dpkg/prerm

if [ -f /usr/share/dbconfig-common/dpkg/prerm.pgsql ]; then
    . /usr/share/dbconfig-common/dpkg/prerm.pgsql
    dbc_go taler-exchange "$@"
fi

db_stop
exit 0