aboutsummaryrefslogtreecommitdiff
path: root/etc/periodic
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2003-03-29 03:27:49 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2003-03-29 03:27:49 +0000
commitd19c3acb4449162a684bb66ec3f19ad39d97a84f (patch)
treecce1034c11e1349cc927de83aa202e35cda4a184 /etc/periodic
parentdde8112b232858d5de3b9b3c1486f87ec6b485f1 (diff)
downloadsrc-d19c3acb4449162a684bb66ec3f19ad39d97a84f.tar.gz
src-d19c3acb4449162a684bb66ec3f19ad39d97a84f.zip
This is OBE as we don't have rdist in the base system any longer.
Notes
Notes: svn path=/head/; revision=112770
Diffstat (limited to 'etc/periodic')
-rwxr-xr-xetc/periodic/daily/320.rdist31
1 files changed, 0 insertions, 31 deletions
diff --git a/etc/periodic/daily/320.rdist b/etc/periodic/daily/320.rdist
deleted file mode 100755
index 11ec19083232..000000000000
--- a/etc/periodic/daily/320.rdist
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-
-# If there is a global system configuration file, suck it in.
-#
-if [ -r /etc/defaults/periodic.conf ]
-then
- . /etc/defaults/periodic.conf
- source_periodic_confs
-fi
-
-case "$daily_distfile_enable" in
- [Yy][Ee][Ss])
- if [ ! -f /etc/Distfile ]
- then
- echo '$daily_distfile_enable is set but /etc/Distfile' \
- "doesn't exist"
- rc=2
- else
- echo ""
- echo "Running rdist with /etc/Distfile:"
-
- rdist -f /etc/Distfile && rc=0 || rc=3
- fi;;
-
- *) rc=0;;
-esac
-
-exit $rc