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

Diff for /src/etc/rc between version 1.328 and 1.329

version 1.328, 2009/06/30 15:30:24 version 1.329, 2009/08/04 15:16:45
Line 166 
Line 166 
                 echo /etc/rc.shutdown complete.                  echo /etc/rc.shutdown complete.
   
                 # bring carp interfaces down gracefully                  # bring carp interfaces down gracefully
                 ifconfig -a|grep '^carp.*:'|cut -f1 -d:|while read if                  ifconfig | while read if junk; do
                 do                          case $if in
                         ifconfig $if down                                  carp*:) ifconfig ${if%:} down ;;
                           esac
                 done                  done
   
                 if [ X"${powerdown}" = X"YES" ]; then                  if [ X"${powerdown}" = X"YES" ]; then

Legend:
Removed from v.1.328  
changed lines
  Added in v.1.329