Re: Openrc error
Reply #1 –
Apparently my wlan is being soft-blocked by rfkill, so I wrote an openrc service
#!/usr/bin/openrc-run
name=$RC_SVCNAME
description=""
command="/usr/bin/rfkill"
command_args="unblock all"
depend() {
before net.wlan0
}
And enabled it but wlan still is blocked by rfkill after this scripts runs. But if I run it myself it unblocks everything.