1
0

reboot 900 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/bin/sh
  2. ########################################################################
  3. # Begin reboot
  4. #
  5. # Description : Reboot Scripts
  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: reboot
  16. # Required-Start:
  17. # Should-Start:
  18. # Required-Stop:
  19. # Should-Stop:
  20. # Default-Start: 6
  21. # Default-Stop:
  22. # Short-Description: Reboots the system.
  23. # Description: Reboots the System.
  24. # X-LFS-Provided-By: LFS
  25. ### END INIT INFO
  26. . /lib/lsb/init-functions
  27. case "${1}" in
  28. stop)
  29. log_info_msg "Restarting system..."
  30. reboot -d -f -i
  31. ;;
  32. *)
  33. echo "Usage: ${0} {stop}"
  34. exit 1
  35. ;;
  36. esac
  37. # End reboot