1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00
Simo Sorce 658d069b16 r731: add the current debian directory for debian stable (woody) targeted releases
(This used to be commit 4b9f891319fad31eb0494ab57d186568f35443ba)
2007-10-10 10:51:35 -05:00

27 lines
543 B
Bash

#!/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#