source: bootscripts-standard/clfs/init.d/reboot@ a483775

Last change on this file since a483775 was 7df280d, checked in by Joe Ciccone <jciccone@…>, 17 years ago

Change /bin/sh to /bin/bash in the bootscripts because the bootscripts use bashisms. Having ash linked to sh will cause errors. Thanks to Bigdassaved for providing the diff and Copper for bring up the issue.

  • Property mode set to 100644
File size: 533 bytes
Line 
1#!/bin/bash
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
18case "${1}" in
19 stop)
20 boot_mesg "Restarting system..."
21 reboot -d -f -i
22 ;;
23
24 *)
25 echo "Usage: ${0} {stop}"
26 exit 1
27 ;;
28
29esac
30
31# End $rc_base/init.d/reboot
Note: See TracBrowser for help on using the repository browser.