summaryrefslogtreecommitdiffstats
path: root/packaging/Debian/debian/samba.postrm
blob: 17503df6b7d7e542a1ae4cfd6996388624617188 (plain)
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
#!/bin/sh
#
#

if [ "$1" = purge ]; then

	# Remove WINS.DAT, BROWSE.DAT and lock information file
	rm -Rf /var/samba/

	# Remove any files in the old and obsolete /var/lock/samba directory
	rm -Rf /var/lock/samba/

	# Remove files left in /etc/samba/
	rm -Rf /etc/samba/MACHINE.SID

	# Remove log files
	rm -Rf /var/log/samba/

	# Remove init.d configuration file
	echo  Removing configuration file /etc/default/samba...  >&2
	rm -f /etc/default/samba

	# Remove NetBIOS entries from /etc/inetd.conf
	update-inetd --remove netbios-ssn
	update-inetd --remove netbios-ns

	update-rc.d samba remove >/dev/null
else
	# Not purging, do not remove NetBIOS entries from /etc/inetd.conf
	update-inetd --disable netbios-ssn
	update-inetd --disable netbios-ns
fi

#DEBHELPER#