svn commit: r237721 - stable/9/etc/periodic/daily

John Baldwin jhb at FreeBSD.org
Thu Jun 28 18:52:33 UTC 2012


Author: jhb
Date: Thu Jun 28 18:52:33 2012
New Revision: 237721
URL: http://svn.freebsd.org/changeset/base/237721

Log:
  MFC 235132:
  Display dropped transmit packets in the daily network interface output.

Modified:
  stable/9/etc/periodic/daily/420.status-network
Directory Properties:
  stable/9/etc/   (props changed)

Modified: stable/9/etc/periodic/daily/420.status-network
==============================================================================
--- stable/9/etc/periodic/daily/420.status-network	Thu Jun 28 18:38:50 2012	(r237720)
+++ stable/9/etc/periodic/daily/420.status-network	Thu Jun 28 18:52:33 2012	(r237721)
@@ -18,9 +18,9 @@ case "$daily_status_network_enable" in
 
 	case "$daily_status_network_usedns" in
 	    [Yy][Ee][Ss])
-		netstat -i && rc=0 || rc=3;;
+		netstat -id && rc=0 || rc=3;;
 	    *)
-		netstat -in && rc=0 || rc=3;;
+		netstat -idn && rc=0 || rc=3;;
 	esac;;
 
     *)  rc=0;;


More information about the svn-src-stable mailing list