This file is indexed.

postinst is in wide-dhcpv6-server 20080615-11.

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
#!/bin/sh -e

case "$1" in
	configure|reconfigure)
		# continue
		;;
	abort-upgrade|abort-remove|abort-deconfigure)
		exit 0
		;;
	*)
		echo "postinst called with unknown argument \`$1'" >&2
		exit 0
		;;
esac

# debconf
. /usr/share/debconf/confmodule

INITCONFFILE=/etc/default/wide-dhcpv6-server

echo "Generating ${INITCONFFILE}..." >&2
cat >$INITCONFFILE <<'EOFINITCONFFILE'
# Defaults for dhcpv6 server initscript
# Used by /etc/init.d/wide-dhcpv6-server

# Interfaces on which the server should serve DHCPv6 requests. If empty, the 
# server is deactivated.
INTERFACES=""
EOFINITCONFFILE

# Debconf
db_get wide-dhcpv6-server/interfaces || true
INTERFACES=${RET}

TMPFILE=`mktemp -q ${INITCONFFILE}.new.XXXXXX`
sed -e "s,^[[:space:]]*INTERFACES[[:space:]]*=.*,INTERFACES=\"${INTERFACES}\"," \
       	<${INITCONFFILE} >${TMPFILE}
cp ${TMPFILE} ${INITCONFFILE}
rm ${TMPFILE}

db_stop

# Automatically added by dh_installinit
if [ -x "/etc/init.d/wide-dhcpv6-server" ]; then
	update-rc.d wide-dhcpv6-server defaults >/dev/null
	invoke-rc.d wide-dhcpv6-server start || exit $?
fi
# End automatically added section


exit 0