123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #!/bin/sh
- ########################################################################
- # Begin reboot
- #
- # Description : Reboot Scripts
- #
- # Authors : Gerard Beekmans - gerard@linuxfromscratch.org
- # Update : Bruce Dubbs - bdubbs@linuxfromscratch.org
- #
- # Version : LFS 7.0
- #
- ########################################################################
- ### BEGIN INIT INFO
- # Provides: reboot
- # Required-Start:
- # Should-Start:
- # Required-Stop:
- # Should-Stop:
- # Default-Start: 6
- # Default-Stop:
- # Short-Description: Reboots the system.
- # Description: Reboots the System.
- # X-LFS-Provided-By: LFS
- ### END INIT INFO
- . /lib/boot/functions
- case "${1}" in
- stop)
- boot_mesg "Restarting system..."
- reboot -d -f -i
- ;;
- *)
- echo "Usage: ${0} {stop}"
- exit 1
- ;;
- esac
- # End reboot
|