~gandelman-a/ubuntu/raring/keystone/pki_setup

« back to all changes in this revision

Viewing changes to debian/keystone.prerm

  • Committer: Chuck Short
  • Date: 2012-12-11 14:00:53 UTC
  • Revision ID: zulcss@ubuntu.com-20121211140053-n7575onqczj3otjq
Remove dbconfig-common setup, its not enabled by default anyways.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
set -e
4
 
 
5
 
. /usr/share/debconf/confmodule
6
 
. /usr/share/dbconfig-common/dpkg/prerm
7
 
 
8
 
 
9
 
db_get keystone/configure_db
10
 
if [ "$RET" = "true" ]; then
11
 
        # Only cleanup with dbconfig if it was used during
12
 
        # installation (LP: #948719)
13
 
        dbc_go keystone $@
14
 
fi
15
 
 
16
 
#DEBHELPER#
17