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.cron.daily | |
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.cron.daily')
-rw-r--r-- | packaging/Debian/debian-woody/samba.cron.daily | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/packaging/Debian/debian-woody/samba.cron.daily b/packaging/Debian/debian-woody/samba.cron.daily deleted file mode 100644 index 42fc98d8f6..0000000000 --- a/packaging/Debian/debian-woody/samba.cron.daily +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -# -# cron script to save a backup copy of /etc/samba/smbpasswd in /var/backups. -# -# Written by Eloy A. Paris <peloy@debian.org> for the Debian project. -# - -BAK=/var/backups - -umask 022 -if cd $BAK; then - # Make sure /etc/samba/smbpasswd exists - if [ -f /etc/samba/smbpasswd ]; then - cmp -s smbpasswd.bak /etc/samba/smbpasswd || cp -p /etc/samba/smbpasswd smbpasswd.bak - fi -fi |