mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 00:32:13 +02:00
wpa-supplicant-2.0: don't exit in pkg_postinst
Exiting explicitly in pkg_postinst makes it impossible to use the update-rc.d class in a .bbappend because the link creation is appended to the pkg_postinst script. (From OE-Core rev: 758d53d3044f29f3c33ffee3ada88c9edc9f864f) Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e036f2af90
commit
cac6f8148a
@@ -82,9 +82,8 @@ do_install () {
|
||||
|
||||
pkg_postinst_wpa-supplicant () {
|
||||
# If we're offline, we don't need to do this.
|
||||
if [ "x$D" != "x" ]; then
|
||||
exit 0
|
||||
if [ "x$D" = "x" ]; then
|
||||
killall -q -HUP dbus-daemon || true
|
||||
fi
|
||||
|
||||
killall -q -HUP dbus-daemon || true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user