File: gdm3.postrm

package info (click to toggle)
gdm3 49.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,060 kB
  • sloc: ansic: 31,633; sh: 1,637; xml: 539; makefile: 72
file content (32 lines) | stat: -rw-r--r-- 913 bytes parent folder | download
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
#!/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 /run/gdm3
	rm -rf /var/log/gdm3
	rm -rf /var/cache/gdm
fi

#DEBHELPER#