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

Diff for /src/etc/netstart between version 1.88 and 1.89

version 1.88, 2003/10/20 17:53:32 version 1.89, 2003/12/03 13:28:36
Line 27 
Line 27 
   
         ifconfig $if > /dev/null 2>&1          ifconfig $if > /dev/null 2>&1
         if [ "$?" != "0" ]; then          if [ "$?" != "0" ]; then
                 return                  # Try to create interface if it does not exist
                   ifconfig $if create > /dev/null 2>&1
                   if [ "$?" != "0" ]; then
                           return
                   fi
         fi          fi
   
         # Now parse the hostname.* file          # Now parse the hostname.* file

Legend:
Removed from v.1.88  
changed lines
  Added in v.1.89