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

« back to all changes in this revision

Viewing changes to debian/keystone.config

  • 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
 
set -e
3
 
 
4
 
. /usr/share/debconf/confmodule
5
 
 
6
 
 
7
 
db_input low keystone/configure_db || true
8
 
db_go
9
 
db_get keystone/configure_db
10
 
if [ "$RET" = "true" ]; then
11
 
        if [ -f /usr/share/dbconfig-common/dpkg/config ];
12
 
        then
13
 
                dbc_dbtypes="sqlite3, mysql, pgsql"
14
 
                db_authmethod_user="password"
15
 
                dbc_basepath="/var/lib/keystone"
16
 
                . /usr/share/dbconfig-common/dpkg/config
17
 
                dbc_go keystone $@
18
 
        fi
19
 
fi