home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / sbin / fsck.nfs < prev    next >
Text File  |  1999-01-12  |  413b  |  26 lines

  1. #! /bin/sh
  2. #
  3. # fsck.nfs    Dummy fsck.nfs file that always returns success. We
  4. #        need this for when the root file system is on NFS:
  5. #        there is no way to find out if root is NFS mounted
  6. #        and we really want to do a "fsck -a /".
  7. #
  8. # Version:    @(#) fsck.nfs.sh  1.10  30-Nov-1996  miquels@cistron.nl
  9. #
  10.  
  11. while :
  12. do
  13.     case "$1" in
  14.         -*)
  15.             shift
  16.             ;;
  17.         *)
  18.             break
  19.             ;;
  20.     esac
  21. done
  22.  
  23. echo "$1: NFS file system."
  24.  
  25. exit 0
  26.