Package: iwd
Version: 3.3-4

Hello,

During startup I see: dbus-daemon[1012]: dbus[1012]: Unknown group
"netdev" in message bus configuration file

I believe this is due to policy group in
/usr/share/dbus-1/system.d/iwd-dbus.conf:

<policy group="netdev">
  ...
</policy>

Following [1], I understand a postinst step needs to be added to
create the netdev group, if not already present:

+    # create the netdev group used by dbus
+    if ! getent group netdev > /dev/null; then
+        addgroup --quiet --system netdev
+    fi

Thanks,
Phil

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=385495#22

Reply via email to