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

version 1.6.2.5, 2017/10/08 09:54:58 version 1.6.2.7, 2020/06/11 00:56:31
Line 61  passwd() Line 61  passwd()
 local()  local()
 {  {
         echo "Configurate localhost ..." | tee -a $BOOTLOG          echo "Configurate localhost ..." | tee -a $BOOTLOG
        ifconfig lo0 127.0.0.1 | tee -a $BOOTLOG 1>/dev/null 2>&1        ifconfig lo0 inet 127.0.0.1 netmask 255.0.0.0 | tee -a $BOOTLOG 1>/dev/null 2>&1
         hostname `cat /etc/myname`          hostname `cat /etc/myname`
 }  }
   
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.7


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