reboot 531 B

12345678910111213141516171819202122232425262728293031
  1. #!/bin/sh
  2. ########################################################################
  3. # Begin $rc_base/init.d/reboot
  4. #
  5. # Description : Reboot Scripts
  6. #
  7. # Authors : Gerard Beekmans - gerard@linuxfromscratch.org
  8. #
  9. # Version : 00.00
  10. #
  11. # Notes :
  12. #
  13. ########################################################################
  14. . /etc/sysconfig/rc
  15. . ${rc_functions}
  16. case "${1}" in
  17. stop)
  18. boot_mesg "Restarting system..."
  19. reboot -d -f -i
  20. ;;
  21. *)
  22. echo "Usage: ${0} {stop}"
  23. exit 1
  24. ;;
  25. esac
  26. # End $rc_base/init.d/reboot