mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
658d069b16
(This used to be commit 4b9f891319fad31eb0494ab57d186568f35443ba)
27 lines
543 B
Bash
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#
|