1997-08-12 17:48:49 +00:00
|
|
|
#!/bin/sh -
|
|
|
|
#
|
1999-08-28 01:35:59 +00:00
|
|
|
# $FreeBSD$
|
1997-08-12 17:48:49 +00:00
|
|
|
#
|
|
|
|
# Run nightly periodic scripts
|
|
|
|
#
|
|
|
|
# usage: periodic { daily | weekly | monthly } - run standard periodic scripts
|
|
|
|
# periodic /absolute/path/to/directory - run periodic scripts in dir
|
|
|
|
#
|
|
|
|
|
1997-08-13 06:02:18 +00:00
|
|
|
usage () {
|
1997-08-12 17:48:49 +00:00
|
|
|
echo "usage: $0 <directory of files to execute>" 1>&2
|
1997-08-13 06:02:18 +00:00
|
|
|
echo "or $0 { daily | weekly | monthly }" 1>&2
|
1997-08-12 17:48:49 +00:00
|
|
|
exit 1
|
1997-08-13 06:02:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if [ $# -lt 1 ] ; then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
1999-02-14 20:06:02 +00:00
|
|
|
# If possible, check the global system configuration file,
|
|
|
|
# to see if there are additional dirs to check
|
2000-06-23 01:18:31 +00:00
|
|
|
if [ -r /etc/defaults/periodic.conf ]; then
|
|
|
|
. /etc/defaults/periodic.conf
|
|
|
|
source_periodic_confs
|
1997-08-12 17:48:49 +00:00
|
|
|
fi
|
|
|
|
|
1999-01-01 17:37:33 +00:00
|
|
|
host=`hostname`
|
2000-03-29 07:05:29 +00:00
|
|
|
export host
|
2000-11-02 06:33:57 +00:00
|
|
|
tmp_output=`mktemp ${TMPDIR:-/tmp}/periodic.XXXXXXXXXX`
|
1997-08-12 17:48:49 +00:00
|
|
|
|
1997-08-13 06:02:18 +00:00
|
|
|
# Execute each executable file in the directory list. If the x bit is not
|
1997-08-12 17:48:49 +00:00
|
|
|
# set, assume the user didn't really want us to muck with it (it's a
|
|
|
|
# README file or has been disabled).
|
|
|
|
|
2000-09-16 21:59:34 +00:00
|
|
|
for arg
|
2000-09-14 17:19:15 +00:00
|
|
|
do
|
2000-09-16 21:59:34 +00:00
|
|
|
# Where's our output going ?
|
|
|
|
eval output=\$${arg##*/}_output
|
2000-09-14 17:19:15 +00:00
|
|
|
case "$output" in
|
|
|
|
/*) pipe="cat >>$output";;
|
2000-09-20 19:59:44 +00:00
|
|
|
"") pipe=cat;;
|
2000-09-19 22:15:00 +00:00
|
|
|
*) pipe="mail -s '$host ${arg##*/} run output' $output";;
|
2000-09-14 17:19:15 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
success=YES info=YES badconfig=NO # Defaults when ${run}_* aren't YES/NO
|
|
|
|
for var in success info badconfig
|
|
|
|
do
|
2000-09-16 21:59:34 +00:00
|
|
|
case $(eval echo "\$${arg##*/}_show_$var") in
|
|
|
|
[Yy][Ee][Ss]) eval $var=YES;;
|
|
|
|
[Nn][Oo]) eval $var=NO;;
|
|
|
|
esac
|
1997-08-13 06:02:18 +00:00
|
|
|
done
|
2000-09-14 17:19:15 +00:00
|
|
|
|
2000-09-16 21:59:34 +00:00
|
|
|
case $arg in
|
|
|
|
/*) if [ -d "$arg" ]
|
|
|
|
then
|
|
|
|
dirlist="$arg"
|
|
|
|
else
|
|
|
|
echo "$0: $arg not found" >&2
|
|
|
|
continue
|
|
|
|
fi;;
|
|
|
|
*) dirlist=
|
|
|
|
for top in /etc/periodic ${local_periodic}
|
|
|
|
do
|
|
|
|
[ -d $top/$arg ] && dirlist="$dirlist $top/$arg"
|
|
|
|
done;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
{
|
|
|
|
empty=TRUE
|
|
|
|
processed=0
|
|
|
|
for dir in $dirlist
|
|
|
|
do
|
|
|
|
for file in $dir/*
|
|
|
|
do
|
|
|
|
if [ -x $file -a ! -d $file ]
|
|
|
|
then
|
|
|
|
output=TRUE
|
|
|
|
processed=$(($processed + 1))
|
|
|
|
$file </dev/null >$tmp_output 2>&1
|
2000-09-19 21:46:54 +00:00
|
|
|
rc=$?
|
2000-09-16 21:59:34 +00:00
|
|
|
if [ -s $tmp_output ]
|
|
|
|
then
|
2000-09-19 21:46:54 +00:00
|
|
|
case $rc in
|
2000-09-16 21:59:34 +00:00
|
|
|
0) [ $success = NO ] && output=FALSE;;
|
|
|
|
1) [ $info = NO ] && output=FALSE;;
|
|
|
|
2) [ $badconfig = NO ] && output=FALSE;;
|
|
|
|
esac
|
|
|
|
[ $output = TRUE ] && { cat $tmp_output; empty=FALSE; }
|
|
|
|
fi
|
2000-11-02 06:33:57 +00:00
|
|
|
cp /dev/null $tmp_output
|
2000-09-16 21:59:34 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
if [ $empty = TRUE ]
|
|
|
|
then
|
|
|
|
[ $processed = 1 ] && plural= || plural=s
|
|
|
|
echo "No output from the $processed file$plural processed"
|
2002-05-14 01:15:35 +00:00
|
|
|
else
|
|
|
|
echo ""
|
|
|
|
echo "-- End of $arg output --"
|
2000-09-16 21:59:34 +00:00
|
|
|
fi
|
|
|
|
} | eval $pipe
|
1997-08-13 06:23:54 +00:00
|
|
|
done
|
2000-11-26 03:37:34 +00:00
|
|
|
rm -f $tmp_output
|