summaryrefslogtreecommitdiff
path: root/packaging/Debian/debian/samba.postrm
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/Debian/debian/samba.postrm')
-rw-r--r--packaging/Debian/debian/samba.postrm26
1 files changed, 26 insertions, 0 deletions
diff --git a/packaging/Debian/debian/samba.postrm b/packaging/Debian/debian/samba.postrm
new file mode 100644
index 0000000000..73b2f0d0a1
--- /dev/null
+++ b/packaging/Debian/debian/samba.postrm
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+if [ "$1" = purge ]; then
+ update-rc.d samba remove >/dev/null
+
+ # 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/debian_config
+ rm -Rf /etc/samba/MACHINE.SID
+
+ # Remove log files
+ rm -f /var/log/[ns]mb*
+
+ # Remove NetBIOS entries from /etc/inetd.conf
+ update-inetd --remove netbios-ssn
+ update-inetd --remove netbios-ns
+else
+ # Not purging, do not remove NetBIOS entries from /etc/inetd.conf
+ update-inetd --disable netbios-ssn
+ update-inetd --disable netbios-ns
+fi