File: config

package info (click to toggle)
dbconfig-common 2.0.25
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,184 kB
  • sloc: sh: 1,487; makefile: 51; sql: 40; perl: 12
file content (15 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -e
#set -x

. /usr/share/debconf/confmodule

if [ -f /usr/share/dbconfig-common/dpkg/config.pgsql ]; then
	. /usr/share/dbconfig-common/dpkg/config.pgsql 
	# the previous version (1.9) didn't use dbconfig-common.  this is
	# how we accomodate users who already have this old version installed:
	dbc_first_version="2.0"
	dbc_load_include="sh:/etc/db-test-pgsql-migration/db.conf"
	dbc_go db-test-pgsql-migration "$@"
fi