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

Diff for /src/etc/netstart between version 1.175 and 1.176

version 1.175, 2017/04/07 22:53:25 version 1.176, 2017/04/08 08:33:05
Line 24 
Line 24 
 ifstart() {  ifstart() {
         # Note: Do not rename the 'if' variable which is documented as being          # Note: Do not rename the 'if' variable which is documented as being
         # usable in hostname.if(5) files.          # usable in hostname.if(5) files.
         if=$1          local if=$1 _file=/etc/hostname.$1 _stat
   
         # Interface names must be alphanumeric only.  We check to avoid          # Interface names must be alphanumeric only.  We check to avoid
         # configuring backup or temp files, and to catch the "*" case.          # configuring backup or temp files, and to catch the "*" case.
         [[ $if != +([[:alpha:]])+([[:digit:]]) ]] && return          [[ $if != +([[:alpha:]])+([[:digit:]]) ]] && return
   
         file=/etc/hostname.$if          if [[ ! -f $_file ]]; then
         if ! [ -f $file ]; then                  echo "netstart: $_file: No such file or directory"
                 echo "netstart: $file: No such file or directory"  
                 return                  return
         fi          fi
         # Not using stat(1), we can't rely on having /usr yet.          # Not using stat(1), we can't rely on having /usr yet.
         set -A stat -- $(ls -nL $file)          set -A _stat -- $(ls -nL $_file)
         if [ "${stat[0]#???????} ${stat[2]} ${stat[3]}" != "--- 0 0" ]; then          if [ "${_stat[0]#???????} ${_stat[2]} ${_stat[3]}" != "--- 0 0" ]; then
                 echo "WARNING: $file is insecure, fixing permissions"                  echo "WARNING: $_file is insecure, fixing permissions"
                 chmod -LR o-rwx $file                  chmod -LR o-rwx $_file
                 chown -LR root.wheel $file                  chown -LR root.wheel $_file
         fi          fi
         # Check for ifconfig'able interface.          # Check for ifconfig'able interface.
         (ifconfig $if || ifconfig $if create) >/dev/null 2>&1 || return          (ifconfig $if || ifconfig $if create) >/dev/null 2>&1 || return
Line 132 
Line 131 
                         ;;                          ;;
                 esac                  esac
                 eval "$cmd"                  eval "$cmd"
         done <$file          done <$_file
 }  }
   
 # Start multiple interfaces by driver name.  # Start multiple interfaces by driver name.

Legend:
Removed from v.1.175  
changed lines
  Added in v.1.176