9 lines
133 B
Text
9 lines
133 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
description="Hack to fix wlan0 EINVAL if rfkilled on boot"
|
||
|
|
||
|
start () {
|
||
|
ifconfig wlan0 up
|
||
|
ifconfig wlan0 down
|
||
|
}
|