source: bootscripts/clfs/init.d/halt @ d66bf46

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since d66bf46 was d66bf46, checked in by Jim Gifford <clfs@…>, 17 years ago

Update bootscripts to follow our standards

  • Property mode set to 100644
File size: 483 bytes
Line 
1#!/bin/sh
2########################################################################
3# Begin $rc_base/init.d/halt
4#
5# Description : Halt Script
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                halt -d -f -i -p
21                ;;
22        *)
23                echo "Usage: {stop}"
24                exit 1
25                ;;
26esac
27
28# End $rc_base/init.d/halt
Note: See TracBrowser for help on using the repository browser.