diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2012-04-17 12:37:17 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-17 12:26:12 +0100 |
commit | 6004dc8906f6a36f6242a96b94efd111d474d2cf (patch) | |
tree | 557dda28f1cd754607f568f9ebd71c0f1e3ec17e /meta/recipes-connectivity | |
parent | 04d6aa1069f68562cc28167c4bf9f0096789ec7f (diff) | |
download | poky-6004dc8906f6a36f6242a96b94efd111d474d2cf.tar.gz |
avahi-daemon: fix missing init script links
* update-rc.d wasn't executed when the rootfs was built, because
pkg_postinst_avahi-daemon exited early. It wasn't run either
on first boot, because the exit code was 0.
(From OE-Core rev: c084759d7f69b751e1ed3ef79d686389d867f248)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/avahi/avahi.inc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/meta/recipes-connectivity/avahi/avahi.inc b/meta/recipes-connectivity/avahi/avahi.inc index 731ad9a1cc..61ca25f75e 100644 --- a/meta/recipes-connectivity/avahi/avahi.inc +++ b/meta/recipes-connectivity/avahi/avahi.inc | |||
@@ -14,7 +14,7 @@ SECTION = "network" | |||
14 | # python scripts are under GPLv2+ | 14 | # python scripts are under GPLv2+ |
15 | LICENSE = "GPLv2+ & LGPLv2.1+" | 15 | LICENSE = "GPLv2+ & LGPLv2.1+" |
16 | 16 | ||
17 | INC_PR = "r1" | 17 | INC_PR = "r2" |
18 | 18 | ||
19 | DEPENDS = "expat libcap libdaemon dbus glib-2.0" | 19 | DEPENDS = "expat libcap libdaemon dbus glib-2.0" |
20 | 20 | ||
@@ -123,17 +123,16 @@ do_install_avahi-autoipd() { | |||
123 | } | 123 | } |
124 | 124 | ||
125 | # At the time the postinst runs, dbus might not be setup so only restart if running | 125 | # At the time the postinst runs, dbus might not be setup so only restart if running |
126 | # Don't exit early, because update-rc.d needs to run subsequently. | ||
126 | 127 | ||
127 | pkg_postinst_avahi-daemon () { | 128 | pkg_postinst_avahi-daemon () { |
128 | if [ "x$D" != "x" ]; then | 129 | if [ -z "$D" ]; then |
129 | exit 0 | ||
130 | fi | ||
131 | |||
132 | DBUSPID=`pidof dbus-daemon` | 130 | DBUSPID=`pidof dbus-daemon` |
133 | 131 | ||
134 | if [ "x$DBUSPID" != "x" ]; then | 132 | if [ "x$DBUSPID" != "x" ]; then |
135 | /etc/init.d/dbus-1 force-reload | 133 | /etc/init.d/dbus-1 force-reload |
136 | fi | 134 | fi |
135 | fi | ||
137 | } | 136 | } |
138 | 137 | ||
139 | pkg_postinst_avahi-autoipd () { | 138 | pkg_postinst_avahi-autoipd () { |