[BACK]Return to rc CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / etc

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/etc/rc between version 1.162 and 1.163

version 1.162, 2003/01/04 15:27:43 version 1.163, 2009/04/10 16:18:04
Line 37  trap "echo 'Boot interrupted.'; exit 1" 
Line 37  trap "echo 'Boot interrupted.'; exit 1" 
   
 date  date
   
 files=$(rcorder -s nostart ${rc_rcorder_flags} /etc/rc.d/*)  scripts=$(for rcd in ${rc_directories:-/etc/rc.d}; do
           test -d ${rcd} && echo ${rcd}/*;
   done)
   files=$(rcorder -s nostart ${rc_rcorder_flags} ${scripts})
   
 for _rc_elem in $files; do  for _rc_elem in $files; do
         run_rc_script $_rc_elem start          run_rc_script $_rc_elem start

Legend:
Removed from v.1.162  
changed lines
  Added in v.1.163

CVSweb <webmaster@jp.NetBSD.org>