home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / etc / init.d / mountall.sh < prev    next >
Text File  |  1998-12-10  |  561b  |  30 lines

  1. #
  2. # mountall.sh    Mount all filesystems.
  3. #
  4. # Version:    @(#)mountall.sh  2.76  10-Dec-1998  miquels@cistron.nl
  5. #
  6. . /etc/default/rcS
  7.  
  8. #
  9. # Mount local file systems in /etc/fstab.
  10. #
  11. [ "$VERBOSE" != no ] && echo "Mounting local file systems..."
  12. mount -avt nonfs,noproc
  13.  
  14. #
  15. # We might have mounted something over /dev, see if /dev/initctl is there.
  16. #
  17. if [ ! -p /dev/initctl ]
  18. then
  19.     rm -f /dev/initctl
  20.     mknod -m 600 /dev/initctl p
  21. fi
  22. kill -USR1 1
  23.  
  24. #
  25. # Execute swapon command again, in case we want to swap to
  26. # a file on a now mounted filesystem.
  27. #
  28. swapon -a 2>/dev/null
  29.  
  30.