[BACK]Return to netstart CVS log [TXT][DIR] Up to [local] / src / etc

Diff for /src/etc/netstart between version 1.95 and 1.96

version 1.95, 2004/03/13 00:59:02 version 1.96, 2004/03/22 04:31:42
Line 319 
Line 319 
         ;;          ;;
 esac  esac
   
 # Configure all the carp, gif, gre and pfsync interfaces which we know about.  # The pfsync interface needs to come up before carp.
   if [ -f /etc/hostname.pfsync0 ]; then
                   ifstart pfsync0
   fi
   
   # Configure all the carp, gif and gre interfaces which we know about.
 # They were delayed because they require the routes to be set.  # They were delayed because they require the routes to be set.
 for hn in /etc/hostname.*; do  for hn in /etc/hostname.*; do
         # Strip off /etc/hostname. prefix          # Strip off /etc/hostname. prefix
Line 327 
Line 332 
         test "$if" = "*" && continue          test "$if" = "*" && continue
   
         case $if in          case $if in
         "carp"*|"gif"*|"gre"*|"pfsync"*)          "carp"*|"gif"*|"gre"*)
                 ifstart $if                  ifstart $if
                 ;;                  ;;
         *)          *)

Legend:
Removed from v.1.95  
changed lines
  Added in v.1.96