This file is indexed.

postinst is in interchange-ui 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
#! /bin/sh -e
#
# Copyright 2001,2006,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

# Check for installed foundation demo catalog and set configuration
# variable accordingly (only for backwards compatibility to 4.8
# interchange-cat-foundation packages)

USE_FOUNDATION=
if dpkg --status interchange-cat-foundation 2>/dev/null | grep -q '^Status: .* installed$'; then
	db_get interchange-cat-foundation/install
	if [ "$RET" = "true" ]; then
		USE_FOUNDATION=1
	fi
fi

db_get interchange-ui/defaultlocale
UI_LOCALE=$RET
interchangeconfig UI=1 UI_LOCALE=$UI_LOCALE USE_FOUNDATION=$USE_FOUNDATION



# Check if we run the startup
if [ -f /var/run/interchange-install ]; then
	PACKAGES=""
	exec 4</var/run/interchange-install
	while read <&4 PKG; do
		if [ ! "$PKG" = "interchange-ui" ]; then
			PACKAGES="$PKG $PACKAGES"
		fi
	done
	if [ -z "$PACKAGES" ]; then
		rm /var/run/interchange-install
	else 
		exec 5>/var/run/interchange-install
		for PKG in $PACKAGES; do
			echo "$PKG" >&5
		done
	fi
fi

if [ -x /etc/init.d/interchange ]; then
	if which invoke-rc.d >/dev/null 2>&1; then
		invoke-rc.d interchange start
	else
		/etc/init.d/interchange start
	fi
fi

# Don't wait on Interchange to close file handles
db_stop