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

Diff for /src/etc/netstart between version 1.229 and 1.230

version 1.229, 2022/11/05 12:06:05 version 1.230, 2022/12/05 20:12:00
Line 135 
Line 135 
         local _if=$1 _hn=/etc/hostname.$1 _cmds _i=0 _line _stat          local _if=$1 _hn=/etc/hostname.$1 _cmds _i=0 _line _stat
         set -A _cmds          set -A _cmds
   
           if [[ $_if == ??:??:??:??:??:?? ]]; then
                   if ! _line=$( ifconfig -M $_if ); then
                           print -u2 "${0##*/}: $_if is not unique."
                           return
                   fi
   
                   [[ -z $_line ]] && return
                   _if=$_line
                   _line=
   
                   if [[ -e /etc/hostname.$_if ]]; then
                           print -u2 "${0##*/}: $_hn: /etc/hostname.$_if overrides"
                           return
                   fi
           fi
   
         # 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
Line 183 
Line 199 
         local _sifs=$1 _xifs=$2 _hn _if _sif _xif          local _sifs=$1 _xifs=$2 _hn _if _sif _xif
   
         for _sif in ${_sifs:-ALL}; do          for _sif in ${_sifs:-ALL}; do
                 for _hn in /etc/hostname.+([[:alpha:]])+([[:digit:]]); do                  for _hn in /etc/hostname.@(+([[:alpha:]])+([[:digit:]])|??:??:??:??:??:??); do
                         [[ -f $_hn ]] || continue                          [[ -f $_hn ]] || continue
                         _if=${_hn#/etc/hostname.}                          _if=${_hn#/etc/hostname.}
   
                         # Skip unwanted ifs.                          if [[ $_if == +([[:alpha:]])+([[:digit:]]) ]]; then
                         for _xif in $_xifs; do                                  # Skip unwanted ifs.
                                 [[ $_xif == ${_if%%[0-9]*} ]] && continue 2                                  for _xif in $_xifs; do
                         done                                          [[ $_xif == ${_if%%[0-9]*} ]] && continue 2
                                   done
                           fi
   
                         # Start wanted ifs.                          # Start wanted ifs.
                         [[ $_sif == @(ALL|${_if%%[0-9]*}) ]] && ifstart $_if                          [[ $_sif == @(ALL|${_if%%[0-9]*}) ]] && ifstart $_if

Legend:
Removed from v.1.229  
changed lines
  Added in v.1.230