Avoid printing "IPv6 autoconf:" if you have no v6 rtsol interfaces.
OK?

Index: netstart
===================================================================
RCS file: /cvs/src/etc/netstart,v
retrieving revision 1.154
diff -u -p -r1.154 netstart
--- netstart    11 Sep 2015 12:21:52 -0000      1.154
+++ netstart    13 Sep 2015 12:18:14 -0000
@@ -180,7 +180,7 @@ if [ $# -gt 0 ]; then
                ifstart $1
                shift
        done
-       ifautoconf
+       [[ -n $rtsolif ]] && ifautoconf
        return
 fi
 
@@ -263,7 +263,7 @@ ifmstart "" "trunk svlan vlan carp gif g
 ifmstart "trunk svlan vlan carp"
 
 # Now that $rtsolif has been populated, IPv6 autoconf those interfaces
-ifautoconf
+[[ -n $rtsolif ]] && ifautoconf
 
 # Look for default routes in /etc/mygate.
 [[ -z $dhcpif ]] && stripcom /etc/mygate | while read gw; do

Reply via email to