Use hoststat/purgestat instead of sendmail -bh/-bH so the calls can

be properly mailwrapper'ed.

PR:		conf/60676
Submitted by:	Colin Percival <cperciva@daemonology.net>, maxim
MFC after:	4 days
This commit is contained in:
Gregory Neil Shapiro 2004-01-02 18:50:22 +00:00
parent 44bb5f52d3
commit 75d80d9541
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124080

View File

@ -2,7 +2,7 @@
#
# $FreeBSD$
#
# Remove stale files in /var/spool/.hoststat
# Remove stale persistent host status files
#
# If there is a global system configuration file, suck it in.
@ -14,13 +14,13 @@ fi
case "$daily_clean_hoststat_enable" in
[Yy][Ee][Ss])
if [ -z "$(sendmail -bh 2>&1)" ]; then
if [ -z "$(hoststat 2>&1)" ]; then
rc=2
else
echo ""
echo "Removing stale entries from sendmail host status cache:"
rc=0
sendmail -bH || rc=1
purgestat || rc=1
fi;;
*) rc=0;;