1997-08-16 17:04:02 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
1999-08-27 23:37:10 +00:00
|
|
|
# $FreeBSD$
|
1997-08-16 17:04:02 +00:00
|
|
|
#
|
|
|
|
# `calendar -a' needs to die. Why? Because it's a bad idea, particular
|
|
|
|
# with networked home directories, but also in general. If you want the
|
|
|
|
# output of `calendar' mailed to you, set up a cron job to do it,
|
|
|
|
# or run it from your ~/.profile or ~/.login.
|
|
|
|
#
|
|
|
|
|
2000-06-23 01:18:31 +00:00
|
|
|
# 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
|
1997-08-16 17:04:02 +00:00
|
|
|
|
2000-06-23 01:18:31 +00:00
|
|
|
case "$daily_calendar_enable" in
|
|
|
|
[Yy][Ee][Ss])
|
2000-09-14 17:19:15 +00:00
|
|
|
echo ""
|
|
|
|
echo "Running calendar:"
|
1997-08-17 17:55:45 +00:00
|
|
|
|
2000-09-14 17:19:15 +00:00
|
|
|
calendar -a && rc=0 || rc=3;;
|
|
|
|
|
|
|
|
*) rc=0;;
|
2000-06-23 01:18:31 +00:00
|
|
|
esac
|
2000-09-14 17:19:15 +00:00
|
|
|
|
|
|
|
exit $rc
|