17 lines
305 B
Bash
17 lines
305 B
Bash
#!/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 |