mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
13 lines
210 B
Bash
Executable File
13 lines
210 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ -f /etc/security -a -x /usr/sbin/sendmail ] ; then
|
|
echo ""
|
|
echo "Security check:"
|
|
echo " (output mailed separately)"
|
|
|
|
sh /etc/security 2>&1 | sendmail root
|
|
fi
|