On Mon, Feb 17, 2025 at 07:41:51PM +0000, Philip Stewart wrote: > Following [1], I understand a postinst step needs to be added to > create the netdev group, if not already present:
I cant comment if you need the group or not, but: > + # create the netdev group used by dbus > + if ! getent group netdev > /dev/null; then > + addgroup --quiet --system netdev > + fi You don't need the getent group check here. addgroup --quiet --system netdev should be enough. Chris