mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
avahi: enable service when using systemd
(From OE-Core rev: d3fc33760a80b0a067b41ff88e99941f1c40c8f9) Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e24428521a
commit
c51a6b5756
@@ -46,6 +46,24 @@ PACKAGES =+ "avahi-systemd avahi-daemon libavahi-common libavahi-core libavahi-c
|
||||
FILES_avahi-systemd = "${base_libdir}/systemd"
|
||||
RDEPENDS_avahi-systemd = "avahi-daemon"
|
||||
|
||||
pkg_postinst_avahi-systemd() {
|
||||
# can't do this offline
|
||||
if [ "x$D" != "x" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
systemctl enable avahi-daemon.service
|
||||
}
|
||||
|
||||
pkg_postrm_avahi-systemd() {
|
||||
# can't do this offline
|
||||
if [ "x$D" != "x" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
systemctl disable avahi-daemon.service
|
||||
}
|
||||
|
||||
FILES_libavahi-common = "${libdir}/libavahi-common.so.*"
|
||||
FILES_libavahi-core = "${libdir}/libavahi-core.so.*"
|
||||
FILES_libavahi-ui = "${libdir}/libavahi-ui.so.*"
|
||||
|
||||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
||||
file://avahi-client/client.h;endline=23;md5=f4ac741a25c4f434039ba3e18c8674cf"
|
||||
|
||||
RDEPENDS_avahi-daemon = "sysvinit-pidof"
|
||||
PR = "r1"
|
||||
PR = "r3"
|
||||
|
||||
EXTRA_OECONF += "--disable-gtk3"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user