This file is indexed.

postinst is in solaar 0.9.2+dfsg-6.

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

. /usr/share/debconf/confmodule
db_get solaar/use_plugdev_group
if test "$RET" = true; then
	# make sure the group exists if required
	if ! getent group plugdev >/dev/null; then
		groupadd --system plugdev || addgroup --system plugdev
	fi
fi


# Automatically added by dh_python2:
if which pycompile >/dev/null 2>&1; then
	pycompile -p solaar /usr/share/solaar/lib -V 2.7-
fi

# End automatically added section
# Automatically added by dh_installudev
if [ "$1" = configure ]; then
	if [ -e "/etc/udev/rules.d/z60_solaar.rules" ]; then
		echo "Preserving user changes to /etc/udev/rules.d/60-solaar.rules ..."
		if [ -e "/etc/udev/rules.d/60-solaar.rules" ]; then
			mv -f "/etc/udev/rules.d/60-solaar.rules" "/etc/udev/rules.d/60-solaar.rules.dpkg-new"
		fi
		mv -f "/etc/udev/rules.d/z60_solaar.rules" "/etc/udev/rules.d/60-solaar.rules"
	fi
fi
# End automatically added section