aboutsummaryrefslogtreecommitdiffstats
path: root/classes/update-rc.d.oeclass
blob: 6e1ce007ac05a7d6e9cddd4847083c3f38bb390f (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
DEPENDS_append = " update-rc.d"
RDEPENDS_append = " update-rc.d"

INIT_D_DIR = "${sysconfdir}/init.d"

updatercd_postinst() {
if test "x$D" != "x"; then
	D="-r $D"
else
	D="-s"
fi
update-rc.d $D ${INITSCRIPT_NAME} ${INITSCRIPT_PARAMS}
}

updatercd_postrm() {
if test "x$D" != "x"; then
	D="-r $D"
else
	${INIT_D_DIR}/${INITSCRIPT_NAME} stop
fi
update-rc.d $D ${INITSCRIPT_NAME} remove
}

python __anonymous() {
	if oe.data.getVar('INITSCRIPT_NAME', d) == None:
		raise oe.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_NAME" % oe.data.getVar('FILE', d)
	if oe.data.getVar('INITSCRIPT_PARAMS', d) == None:
		raise oe.build.FuncFailed, "%s inherits update-rc.d but doesn't set INITSCRIPT_PARAMS" % oe.data.getVar('FILE', d)
}

python populate_packages_prepend () {
	pkg = oe.data.getVar('PN', d, 1)
	packages = (oe.data.getVar('PACKAGES', d, 1) or "").split()
	if not pkg in packages:
		pkg = packages[0]
	oe.note('adding update-rc.d calls to postinst/postrm for %s' % pkg)
	postinst = oe.data.getVar('pkg_postinst_%s' % pkg, d, 1) or oe.data.getVar('pkg_postinst', d, 1)
	if not postinst:
		postinst = '#!/bin/sh\n'
	postinst += oe.data.getVar('updatercd_postinst', d, 1)
	oe.data.setVar('pkg_postinst_%s' % pkg, postinst, d)
	postrm = oe.data.getVar('pkg_postrm_%s' % pkg, d, 1) or oe.data.getVar('pkg_postrm', d, 1)
	if not postrm:
		postrm = '#!/bin/sh\n'
	postrm += oe.data.getVar('updatercd_postrm', d, 1)
	oe.data.setVar('pkg_postrm_%s' % pkg, postrm, d)
}