halt 813 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #!/bin/sh
  2. ########################################################################
  3. # Begin halt
  4. #
  5. # Description : Halt Script
  6. #
  7. # Authors : Gerard Beekmans - gerard@linuxfromscratch.org
  8. # DJ Lucas - dj@linuxfromscratch.org
  9. # Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
  10. #
  11. # Version : LFS 7.0
  12. #
  13. ########################################################################
  14. ### BEGIN INIT INFO
  15. # Provides: halt
  16. # Required-Start:
  17. # Should-Start:
  18. # Required-Stop:
  19. # Should-Stop:
  20. # Default-Start: 0
  21. # Default-Stop:
  22. # Short-Description: Halts the system.
  23. # Description: Halts the System.
  24. # X-LFS-Provided-By: LFS
  25. ### END INIT INFO
  26. case "${1}" in
  27. stop)
  28. halt -d -f -i -p
  29. ;;
  30. *)
  31. echo "Usage: {stop}"
  32. exit 1
  33. ;;
  34. esac
  35. # End halt