~launchpad-results/launchpad-results/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -e

. /usr/share/debconf/confmodule

#DEBHELPER#

if [ -f /usr/share/dbconfig-common/dpkg/prerm.pgsql ]; then
    . /usr/share/dbconfig-common/dpkg/prerm.pgsql

    for dbc_dbname in \
        lpresults-session \
        lpresults-test-1 \
        lpresults-tracker; do

        dbc_go $dbc_dbname $@
    done
fi