freebsd-nq/usr.sbin/periodic/etc/daily/500.queuerun
Brad Davis 81ea85a884 Move all periodic related config and scripts to usr.sbin/periodic/
This makes pkgbase easier by tagging these as CONFS so they are properly
tagged as config files.

Approved by:	will (mentor)
Sponsored by:	Essen Hackathon
Differential Revision:	https://reviews.freebsd.org/D16553
2018-08-11 17:11:08 +00:00

37 lines
646 B
Bash
Executable File

#!/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_queuerun_enable" in
[Yy][Ee][Ss])
if [ ! -x /usr/sbin/sendmail ]
then
echo '$daily_queuerun_enable is set but /usr/sbin/sendmail' \
"isn't executable"
rc=2
else
/usr/sbin/sendmail -q >/dev/null 2>&1 &
case "$daily_submit_queuerun" in
[Yy][Ee][Ss])
if [ -f /etc/mail/submit.cf ]
then
/usr/sbin/sendmail -q -Ac >/dev/null 2>&1 &
fi;;
esac
rc=0
fi;;
*) rc=0;;
esac
exit $rc