~cr3/launchpad-results/trunk

« back to all changes in this revision

Viewing changes to debian/python-lp.results.prerm

  • Committer: Marc Tardif
  • Date: 2010-11-02 02:19:10 UTC
  • Revision ID: marc.tardif@canonical.com-20101102021910-62b6p8411jpb2arh
Added Debian packaging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
#set -x
 
5
 
 
6
. /usr/share/debconf/confmodule
 
7
 
 
8
#DEBHELPER#
 
9
 
 
10
if [ -f /usr/share/dbconfig-common/dpkg/prerm.pgsql ]; then
 
11
    . /usr/share/dbconfig-common/dpkg/prerm.pgsql
 
12
 
 
13
    for dbc_dbname in launchpad-results-main \
 
14
        launchpad-results-project-1 \
 
15
        launchpad-results-session; do
 
16
 
 
17
        dbc_go $dbc_dbname $@
 
18
    done
 
19
fi