home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / ROOT_GZ / root / etc / rc.d / rc.local < prev    next >
Encoding:
Text File  |  1995-05-14  |  1.3 KB  |  56 lines

  1. #! /bin/sh
  2. # Put any local setup commands in here
  3.  
  4. # umsdos syncing
  5. #umssync -r6 -v- /dosd/linux/etc -v- /dosd/linux/usr
  6.  
  7. # insert ftape module
  8. #/sbin/insmod /boot/modules/ftape.o
  9.  
  10. # clean up news
  11. #/bin/su news -c /usr/local/lib/news/bin/maint/newsboot
  12.  
  13. # startup the sendmail daemon
  14. if [ -f /usr/sbin/sendmail -a -f /etc/sendmail.cf ]; then
  15. # remove zero length qf files
  16. #  for qffile in qf*
  17. #  do
  18. #    if [ -r $qffile ]; then
  19. #      if [ ! -s $qffile ]; then
  20. #        echo -n " <zero: $qffile>"
  21. #        rm -f $qffile
  22. #      fi
  23. #    fi
  24. #  done
  25. # rename tf files to be qf if the qf does not exist
  26. #  for tffile in tf*
  27. #  do
  28. #    qffile=`echo $tffile | sed 's/t/q/'`
  29. #    if [ -r $tffile -a ! -f $qffile ]; then
  30. #      echo -n " <recovering: $tffile>"
  31. #      mv $tffile $qffile
  32. #    else
  33. #      echo -n " <extra: $tffile>"
  34. #      rm -f $tffile
  35. #    fi
  36. #  done
  37. # remove df files with no corresponding qf files
  38. #  for dffile in df*
  39. #  do
  40. #    qffile=`echo $dffile | sed 's/d/q/'`
  41. #    if [ -r $dffile -a ! -f $qffile ]
  42. #    then
  43. #      echo -n " <incomplete: $dffile>"
  44. #      mv $dffile `echo $dffile | sed 's/d/D/'`
  45. #    fi
  46. #  done
  47. # announce files that have been saved during disaster recovery
  48. #  for xffile in [A-Z]f*
  49. #  do
  50. #    echo -n " <panic: $xffile>"
  51. #  done
  52. #  echo
  53.   echo 'Daemon: sendmail -bd -q15m'
  54.   /usr/sbin/sendmail -bd -q15m
  55. fi
  56.