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

Diff for /src/etc/netstart between version 1.198 and 1.199

version 1.198, 2018/04/28 22:38:32 version 1.199, 2018/07/08 20:10:26
Line 201 
Line 201 
         done          done
 }  }
   
   # Make sure the invoking user has the right privileges.  Check for presence of
   # id(1) to avoid problems with diskless setups.
   if [[ -x /usr/bin/id ]] && (($(id -u) != 0)); then
           echo "${0##*/}: need root privileges"
           exit 1
   fi
   
 # Get network related vars from rc.conf using the parsing routine from rc.subr.  # Get network related vars from rc.conf using the parsing routine from rc.subr.
 FUNCS_ONLY=1 . /etc/rc.d/rc.subr  FUNCS_ONLY=1 . /etc/rc.d/rc.subr
 _rc_parse_conf  _rc_parse_conf

Legend:
Removed from v.1.198  
changed lines
  Added in v.1.199