This file is indexed.

config is in interchange-cat-standard 5.7.7-2.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#! /bin/sh -e
#
# Copyright 2001,2002,2003,2004,2005,2006,2008,2009 by Stefan Hornburg (Racke) <racke@linuxia.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program; if not, write to the Free
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
# MA  02110-1301  USA.

# Source debconf library
. /usr/share/debconf/confmodule

# Set defaults for dbconfig-common
dbc_dbtypes="sqlite, mysql, pgsql"
dbc_dbname=interchange_standard
dbc_dbuser=interchange

# Source dbconfig-common stuff
. /usr/share/dbconfig-common/dpkg/config 

# demo catalog installation
db_input high interchange-cat-standard/install || [ $? -eq 30 ]
db_go

db_get interchange-cat-standard/install
if [ "$RET" = "false" ]; then
	exit 0
fi

# overwrite of existing installation
db_input high interchange-cat-standard/replace || [ $? -eq 30 ]
db_go

GOAHEAD=false
if [ -d /var/lib/interchange/catalogs/standard ]; then
	db_get interchange-cat-standard/replace
	if [ "$RET" = "ask" ]; then
		db_fset interchange-cat-standard/confirm isdefault true
		db_input critical interchange-cat-standard/confirm 
		db_go
		db_get interchange-cat-standard/confirm
		GOAHEAD="$RET"
	elif [ "$RET" = "always" ]; then
		GOAHEAD=true
	fi
else 
	GOAHEAD=true
fi

db_input medium interchange-cat-standard/purge  || [ $? -eq 30 ]
db_go

# web parameters
db_get interchange/full_url
if [ "$RET" = "true" ]; then
	db_get interchange-cat-standard/vhost
	if [ ! "$RET" ]; then
		db_set interchange-cat-standard/vhost `hostname --fqdn`
	fi
	db_input medium interchange-cat-standard/vhost || [ $? -eq 30 ]
	db_go
fi

# database parameters
dbc_go interchange-cat-standard $@

# catalog admin
db_input high interchange-cat-standard/username || [ $? -eq 30 ]
db_go
db_input high interchange-cat-standard/password || [ $? -eq 30 ]
db_go

# locales
db_input medium interchange-cat-standard/locales || [ $? -eq 30 ]
db_go
db_get interchange-cat-standard/locales
if [ "$RET" ]; then
	db_subst interchange-cat-standard/defaultlocale LOCALES "en_US, $RET"
	db_input medium interchange-cat-standard/defaultlocale || [ $? -eq 30 ]
	db_go
fi