aboutsummaryrefslogtreecommitdiff
path: root/init.d/local.in
blob: 001a4fb12cd9318df8b50b5edeb7220371b4a5ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!@SBINDIR@/openrc-run
# Copyright (c) 2007-2015 The OpenRC Authors.
# See the Authors file at the top-level directory of this distribution and
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
#
# This file is part of OpenRC. It is subject to the license terms in
# the LICENSE file found in the top-level directory of this
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
# This file may not be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.

description="Executes user programs in @SYSCONFDIR@/local.d"

depend()
{
	after *
	keyword -timeout
}

start()
{
	ebegin "Starting local"

	local file has_errors=0 redirect retval
	yesno $rc_verbose || redirect='> /dev/null 2>&1'
	eindent
	for file in @SYSCONFDIR@/local.d/*.start; do
		if [ -x "${file}" ]; then
			vebegin "Executing \"${file}\""
			eval "${file}" $redirect
			retval=$?
			if [ ${retval} -ne 0 ]; then
				has_errors=1
			fi
			veend ${retval} "Execution of \"${file}\" failed."
		fi
	done
	eoutdent

	if command -v local_start >/dev/null 2>&1; then
		ewarn "\"@SYSCONFDIR@/conf.d/local\" should be removed."
		ewarn "Please move the code from the local_start function"
		ewarn "to executable scripts with an .start extension"
		ewarn "in \"@SYSCONFDIR@/local.d\""
		local_start
	fi

	eend ${has_errors}

	# We have to end with a zero exit code, because a failed execution
	# of an executable @SYSCONFDIR@/local.d/*.start file shouldn't result in
	# marking the local service as failed. Otherwise we are unable to
	# execute any executable @SYSCONFDIR@/local.d/*.stop file, because a failed
	# marked service cannot be stopped (and the stop function would
	# actually call the executable @SYSCONFDIR@/local.d/*.stop file(s)).
	return 0
}

stop()
{
	ebegin "Stopping local"

	local file has_errors=0 redirect retval
	yesno $rc_verbose || redirect='> /dev/null 2>&1'
	eindent
	for file in @SYSCONFDIR@/local.d/*.stop; do
		if [ -x "${file}" ]; then
			vebegin "Executing \"${file}\""
			eval "${file}" $redirect
			retval=$?
			if [ ${retval} -ne 0 ]; then
				has_errors=1
			fi
			veend ${retval} "Execution of \"${file}\" failed."
		fi
	done
	eoutdent

	if command -v local_stop >/dev/null 2>&1; then
		ewarn "\"@SYSCONFDIR@/conf.d/local\" should be removed."
		ewarn "Please move the code from the local_stop function"
		ewarn "to executable scripts with an .stop extension"
		ewarn "in \"@SYSCONFDIR@/local.d\""
		local_stop
	fi

	eend ${has_errors}

	# An executable @SYSCONFDIR@/local.d/*.stop file which failed with a
	# non-zero exit status is not a reason to mark this service
	# as failed, therefore we have to end with a zero exit code.
	return 0
}