blob: b79fe1d0099ee2d67cc0f0914468ae5408a5e1bc (
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
|
#!/bin/sh -e
#
#
if [ "$1" = purge ]; then
# Remove Samba's state files, both volatile and non-volatile
rm -Rf /var/run/samba/ /var/cache/samba/ /var/lib/samba
# 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
else
# Not purging, do not remove NetBIOS entries from /etc/inetd.conf
update-inetd --disable netbios-ssn
fi
#DEBHELPER#
|