summaryrefslogtreecommitdiff
path: root/init.d/halt.in
blob: b8f9ed90334bea642e2a7c72f4f4c956ed22ae83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!@PREFIX@/sbin/runscript
# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.

# This script really belongs with the Linux sysvinit package

depend()
{
	after *
	use romount
}

start()
{
	case "${RUNLEVEL}" in
		0) runlevel=shutdown;;
		6) runlevel=reboot;;
		*) eerror "Unknown runlevel ${RUNLEVEL}"; return 1
	esac

	. /etc/init.d/"${runlevel}".sh
	return 0
}