diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-06-12 02:55:26 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-06-12 14:15:08 +0200 |
commit | ba4a047b360c14587430d9bca6c7bf3a88445d6a (patch) | |
tree | 143d4c24232c41b93598331ec708e54b32e4948a /packaging/Debian/debian-woody/samba.postrm | |
parent | c418af2456d6c1ac18a8e31fa5ad808b572d1378 (diff) | |
download | samba-ba4a047b360c14587430d9bca6c7bf3a88445d6a.tar.gz samba-ba4a047b360c14587430d9bca6c7bf3a88445d6a.tar.bz2 samba-ba4a047b360c14587430d9bca6c7bf3a88445d6a.zip |
packaging/Debian: Remove outdated Debian package sources and instead refer to
Debian.org and SerNet packages.
Diffstat (limited to 'packaging/Debian/debian-woody/samba.postrm')
-rw-r--r-- | packaging/Debian/debian-woody/samba.postrm | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/packaging/Debian/debian-woody/samba.postrm b/packaging/Debian/debian-woody/samba.postrm deleted file mode 100644 index b79fe1d009..0000000000 --- a/packaging/Debian/debian-woody/samba.postrm +++ /dev/null @@ -1,26 +0,0 @@ -#!/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# |