home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / rescue / sbin / fsck.xfs < prev    next >
Text File  |  2006-11-29  |  362b  |  20 lines

  1. #!/bin/sh -f
  2. #
  3. # Copyright (c) 2006 Silicon Graphics, Inc.  All Rights Reserved.
  4. #
  5.  
  6. AUTO=false
  7. while getopts ":aA" c
  8. do
  9.     case $c in
  10.     a|A)    AUTO=true;;
  11.     esac
  12. done
  13. if $AUTO; then
  14.     echo "$0: XFS file system."
  15. else
  16.     echo "If you wish to check the consistency of an XFS filesystem or"
  17.     echo "repair a damaged filesystem, see xfs_check(8) and xfs_repair(8)."
  18. fi
  19. exit 0
  20.