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
|
|
|
#
|
|
|
|
|
|
|
|
if [ -f /etc/security -a -x /usr/sbin/sendmail ] ; then
|
|
|
|
echo ""
|
1997-08-17 17:55:45 +00:00
|
|
|
echo "Security check:"
|
|
|
|
echo " (output mailed separately)"
|
1997-08-16 17:04:02 +00:00
|
|
|
|
|
|
|
sh /etc/security 2>&1 | sendmail root
|
|
|
|
fi
|