Skip to main content
Topic: iwd openrc service: service script doesn't advertise itself as network  (Read 385 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

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

Code: [Select]
#!/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.