summaryrefslogtreecommitdiff
path: root/sh/gendepends.sh.in
blob: 618c5f2d8ac2000b3fe5a01c1c424a0502aa2d2d (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
94
95
96
97
98
99
100
101
102
103
104
105
#!@SHELL@
# Shell wrapper to list our dependencies

# Copyright 2007-2008 Roy Marples <roy@marples.name>
# All rights reserved. Released under the 2-clause BSD license.

. @SYSCONFDIR@/init.d/functions.sh

config() {
	[ -n "$*" ] && echo "${RC_SVCNAME} config $*" >&3
}
need() {
	[ -n "$*" ] && echo "${RC_SVCNAME} ineed $*" >&3
}
use() {
	[ -n "$*" ] && echo "${RC_SVCNAME} iuse $*" >&3
}
before() {
	[ -n "$*" ] && echo "${RC_SVCNAME} ibefore $*" >&3
}
after() {
	[ -n "$*" ] && echo "${RC_SVCNAME} iafter $*" >&3
}
provide() {
	[ -n "$*" ] && echo "${RC_SVCNAME} iprovide $*" >&3
}
keyword() {
	[ -n "$*" ] && echo "${RC_SVCNAME} keyword $*" >&3
}
depend() {
	:
}

_done_dirs=
for _dir in \
@SYSCONFDIR@/init.d \
@PKG_PREFIX@/etc/init.d \
@LOCAL_PREFIX@/etc/init.d
do
	[ -d "${_dir}" ] || continue

	# Don't do the same dir twice
	for _d in ${_done_dirs}; do
		[ "${_d}" = "${_dir}" ] && continue 2
	done
	unset _d
	_done_dirs="${_done_dirs} ${_dir}"

	cd "${_dir}"
	for RC_SERVICE in *; do
		[ -x "${RC_SERVICE}" -a -f "${RC_SERVICE}" ] || continue

		# Only generate dependencies for runscripts
		read one two three < "${RC_SERVICE}"
		[ "${one}" = "#!@PREFIX@/sbin/runscript" ] || \
		[ "${one}" = "#!" -a "${two}" = "@PREFIX@/sbin/runscript" ] || \
		continue
		unset one two three

		export RC_SVCNAME=${RC_SERVICE##*/}

		# Compat
		export SVCNAME=${RC_SVCNAME}

		(
		# Save stdout in fd3, then remap it to stderr
		exec 3>&1 1>&2

		_rc_c=${RC_SVCNAME%%.*}
		if [ -n "${_rc_c}" -a "${_rc_c}" != "${RC_SVCNAME}" ]; then
			if [ -e "${_dir}/../conf.d/${_rc_c}" ]; then
				. "${_dir}/../conf.d/${_rc_c}"
			fi
		fi
		unset _rc_c

		if [ -e "${_dir}/../conf.d/${RC_SVCNAME}" ]; then
			. "${_dir}/../conf.d/${RC_SVCNAME}"
		fi

		[ -e @SYSCONFDIR@/rc.conf ] && . @SYSCONFDIR@/rc.conf

		if . "${_dir}/${RC_SVCNAME}"; then
			echo "${RC_SVCNAME}" >&3
			depend
			_rc_svcname=$(shell_var "${RC_SVCNAME}")

			# Add any user defined depends
			for _deptype in config:CONFIG need:NEED use:USE \
			after:AFTER before:BEFORE \
			provide:PROVIDE keyword:KEYWORD; do
				IFS=:
				set -- ${_deptype}
				unset IFS
				eval _depends=\$rc_${_rc_svcname}_$1
				[ -z "${_depends}" ] && eval _depends=\$rc_$1
				[ -z "${_depends}" ] && eval _depends=\$RC_${_rc_svcname}_$2
				[ -z "${_depends}" ] && eval _depends=\$RC_$2

				$1 ${_depends}
			done
		fi
		)
	done
done