This file is indexed.

postrm is in gdm3 3.22.3-3+deb9u2.

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
set -e

# Need to load this before any output on stdout/stderr
# otherwise the debconf command-stream will get
# some invalid input and cause the failure of postrm.
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
        . /usr/share/debconf/confmodule
fi

if [ "$1" = "purge" ] ; then
        update-rc.d gdm3 remove >/dev/null
        if [ -d /etc/gdm3 ]; then
		for i in Init PreSession PostSession PostLogin; do
			if [ -d /etc/gdm3/$i ]; then
				rmdir --ignore-fail-on-non-empty /etc/gdm3/$i 2> /dev/null
			fi
		done
		rm -f /etc/gdm3/greeter.dconf-defaults
		rmdir --ignore-fail-on-non-empty /etc/gdm3
        fi
        if which ucf >/dev/null; then
        	ucf --purge /etc/gdm3/greeter.dconf-defaults
        	ucfr --purge gdm3 /etc/gdm3/greeter.dconf-defaults
        fi
	rm -rf /var/lib/gdm3
	rm -rf /var/run/gdm3
	rm -rf /var/log/gdm3
	rm -rf /var/cache/gdm
        if getent passwd Debian-gdm >/dev/null; then
                if which deluser >/dev/null; then
                        deluser --system Debian-gdm || echo "Could not remove Debian-gdm user."
                fi
        fi
        if getent group Debian-gdm >/dev/null; then
                if which delgroup >/dev/null; then
                        delgroup --system Debian-gdm || echo "Could not remove Debian-gdm group."
                fi
        fi
fi

# Automatically added by dh_installdeb
dpkg-maintscript-helper mv_conffile /etc/pam.d/gdm3 /etc/pam.d/gdm-password 3.10.0.1-3\~ -- "$@"
dpkg-maintscript-helper mv_conffile /etc/pam.d/gdm3-autologin /etc/pam.d/gdm-autologin 3.10.0.1-3\~ -- "$@"
# End automatically added section
# Automatically added by dh_installdebconf
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
	. /usr/share/debconf/confmodule
	db_purge
fi
# End automatically added section