300.calendar revision 50472
128263Spst#!/bin/sh
228263Spst#
350472Speter# $FreeBSD: head/etc/periodic/daily/300.calendar 50472 1999-08-27 23:37:10Z peter $
428263Spst#
528263Spst# `calendar -a' needs to die. Why? Because it's a bad idea, particular
628263Spst# with networked home directories, but also in general.  If you want the
728263Spst# output of `calendar' mailed to you, set up a cron job to do it,
828263Spst# or run it from your ~/.profile or ~/.login.
928263Spst#
1028263Spst
1128263Spstexit 0		# do not run by default
1228263Spst
1328263Spstif [ -f /usr/bin/calendar ] ; then
1428263Spst    echo ""
1528263Spst    echo "Running calendar:"
1628320Spst
1728263Spst    calendar -a
1828263Spstfi
19