From: Jussi Kukkonen Date: Mon, 31 Oct 2016 13:40:17 +0000 (+0200) Subject: avahi: Don't remove users/groups in postrm X-Git-Tag: uninative-1.5~1546 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c1be2196e7ffb23b7b243ecd8aca1827cbdfa443;p=openembedded-core.git avahi: Don't remove users/groups in postrm There's no way to ensure that files owned by the users aren't left on the system at postrm time: Removing the user would mean those files are now owned by a non-existing user, and later may be owned by a completely unrelated new user. [YOCTO #10442] Signed-off-by: Jussi Kukkonen Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-connectivity/avahi/avahi.inc b/meta/recipes-connectivity/avahi/avahi.inc index cb3680272e..faa8741dc5 100644 --- a/meta/recipes-connectivity/avahi/avahi.inc +++ b/meta/recipes-connectivity/avahi/avahi.inc @@ -153,13 +153,3 @@ if [ -z "$D" ]; then killall -q -HUP dbus-daemon || true fi } - -pkg_postrm_avahi-daemon () { - deluser avahi || true - delgroup avahi || true -} - -pkg_postrm_avahi-autoipd () { - deluser avahi-autoipd || true - delgroup avahi-autoipd || true -}