Diff for /elwix/config/etc/default/rc.init between versions 1.6.2.5 and 1.6.2.6

version 1.6.2.5, 2017/10/08 09:54:58 version 1.6.2.6, 2017/10/09 22:22:27
Line 147  service() Line 147  service()
 {  {
         echo "Starting distribution static services:" | tee -a $BOOTLOG          echo "Starting distribution static services:" | tee -a $BOOTLOG
         for i in /etc/rc.d/*.run; do          for i in /etc/rc.d/*.run; do
                if [ -x $i ]; then                if [ -x "$i" ]; then
                         $i                          $i
                 fi                  fi
         done          done
Line 157  service() Line 157  service()
   
                 echo "Starting distribution services:" | tee -a $BOOTLOG                  echo "Starting distribution services:" | tee -a $BOOTLOG
                 for i in /etc/rc.S/*.run; do                  for i in /etc/rc.S/*.run; do
                        if [ -x $i ]; then                        if [ -x "$i" ]; then
                                 $i                                  $i
                         fi                          fi
                 done                  done

Removed from v.1.6.2.5  
changed lines
  Added in v.1.6.2.6


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>