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
|
|
|
#
|
|
|
|
|
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
|
1997-08-16 17:04:02 +00:00
|
|
|
fi
|
2000-06-23 01:18:31 +00:00
|
|
|
|
|
|
|
case "$daily_status_security_enable" in
|
|
|
|
[Yy][Ee][Ss])
|
|
|
|
if [ -f /etc/security -a -x /usr/sbin/sendmail ]
|
|
|
|
then
|
|
|
|
echo ""
|
|
|
|
echo "Security check:"
|
|
|
|
|
|
|
|
case "$daily_status_security_noamd" in
|
|
|
|
[Yy][Ee][Ss])
|
|
|
|
args=-a;;
|
|
|
|
*)
|
|
|
|
args=;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case "$daily_status_security_nomfs" in
|
|
|
|
[Yy][Ee][Ss])
|
|
|
|
args="$args -m";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case "$daily_status_security_inline" in
|
|
|
|
[Yy][Ee][Ss])
|
|
|
|
sh /etc/security -s $args;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
echo " (output mailed separately)"
|
|
|
|
sh /etc/security $args 2>&1 | sendmail root;;
|
|
|
|
esac
|
|
|
|
fi;;
|
|
|
|
esac
|