summaryrefslogtreecommitdiff
path: root/packaging/Debian/debian-sarge/samba.cron.daily
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2009-06-12 02:55:26 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-06-12 14:15:08 +0200
commitba4a047b360c14587430d9bca6c7bf3a88445d6a (patch)
tree143d4c24232c41b93598331ec708e54b32e4948a /packaging/Debian/debian-sarge/samba.cron.daily
parentc418af2456d6c1ac18a8e31fa5ad808b572d1378 (diff)
downloadsamba-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-sarge/samba.cron.daily')
-rw-r--r--packaging/Debian/debian-sarge/samba.cron.daily16
1 files changed, 0 insertions, 16 deletions
diff --git a/packaging/Debian/debian-sarge/samba.cron.daily b/packaging/Debian/debian-sarge/samba.cron.daily
deleted file mode 100644
index 42fc98d8f6..0000000000
--- a/packaging/Debian/debian-sarge/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