iwd openrc service: service script doesn't advertise itself as network
iwd can function as a standalone network manager. As such its openrc service script must advertise that it provides the `net` dependency:
https://gitea.artixlinux.org/packages/iwd-openrc/src/branch/master/iwd.initd
#!/usr/bin/openrc-run
supervisor=supervise-daemon
command="/usr/lib/iwd/iwd"
depend() {
need dbus
+ provide net
keyword -shutdown
}
I can provide a pull request on the package repository if needed. But I'd probably need an invite to create an account there.