]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/initscripts/init.d/reboot
core76: Sort exclude file alphabetically.
[people/teissler/ipfire-2.x.git] / src / initscripts / init.d / reboot
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
15 . /etc/sysconfig/rc
16 . ${rc_functions}
17
18 case "${1}" in
19 stop)
20 sync && sync
21 boot_mesg "Remount root readonly..."
22 mount -f -o remount,ro / > /dev/null 2>&1
23 evaluate_retval
24 boot_mesg "Prepare for reboot..."
25 sleep 2
26 reboot -d -f -i
27 ;;
28
29 *)
30 echo "Usage: ${0} {stop}"
31 exit 1
32 ;;
33
34 esac
35
36 # End $rc_base/init.d/reboot