25d56d8dcc
PR: conf/165956 Submitted by: Jeremy Chadwick MFC after: 1 week
30 lines
470 B
Bash
Executable File
30 lines
470 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_status_network_enable" in
|
|
[Yy][Ee][Ss])
|
|
echo ""
|
|
echo "Network interface status:"
|
|
|
|
case "$daily_status_network_usedns" in
|
|
[Yy][Ee][Ss])
|
|
netstat -id && rc=0 || rc=3;;
|
|
*)
|
|
netstat -idn && rc=0 || rc=3;;
|
|
esac;;
|
|
|
|
*) rc=0;;
|
|
esac
|
|
|
|
exit $rc
|