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

Diff for /src/etc/rc between version 1.99 and 1.100

version 1.99, 1999/05/30 23:20:52 version 1.100, 1999/07/15 14:31:52
Line 77 
Line 77 
 echo 'setting tty flags'  echo 'setting tty flags'
 ttyflags -a  ttyflags -a
   
 # if there's no /etc/host.random, make one through /dev/urandom  # if there's no /var/db/host.random, make one through /dev/urandom
 if [ ! -f /etc/host.random ]; then  if [ ! -f /var/db/host.random ]; then
         dd if=/dev/urandom of=/etc/host.random bs=1024 count=64 >/dev/null 2>&1          dd if=/dev/urandom of=/var/db/host.random bs=1024 count=64 \
         chmod 600 /etc/host.random                  >/dev/null 2>&1
           chmod 600 /var/db/host.random
   else
           dd if=/var/db/host.random of=/dev/urandom bs=1024 count=64 \
                   >/dev/null 2>&1
 fi  fi
   
 # set hostname, turn on network  # set hostname, turn on network

Legend:
Removed from v.1.99  
changed lines
  Added in v.1.100