You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
355 B
Bash
17 lines
355 B
Bash
#!/bin/sh
|
|
# /etc/cron.daily/calendar: BSD mainutils calendar daily maintenance script
|
|
# Written by Austin Donnelly <and1000@debian.org>
|
|
|
|
. /etc/default/bsdmainutils
|
|
|
|
[ x$RUN_DAILY = xtrue ] || exit 0
|
|
|
|
[ -x /usr/sbin/sendmail ] || exit 0
|
|
|
|
if [ ! -x /usr/bin/cpp ]; then
|
|
echo "The cpp package is needed to run calendar."
|
|
exit 1
|
|
fi
|
|
|
|
/usr/bin/calendar -a
|