feat(hostapd): ubus support #16

Merged
rlahfa merged 5 commits from hostapd-ubus into main 2024-09-07 17:53:22 +02:00
Showing only changes of commit ffc6492365 - Show all commits

View file

@ -9,5 +9,8 @@ let
in longrun {
# Long term: make it unique so that user can spawn multiple buses if they want.
name = "ubus";
run = "${package}/bin/ubusd";
run = ''
mkdir -p /run/ubus
${package}/bin/ubusd -s /run/ubus/ubus.sock
'';
}