fix(ubus): set the socket path properly
Some checks failed
build liminix / build_vm_qemu_mips (pull_request) Failing after 28s
Some checks failed
build liminix / build_vm_qemu_mips (pull_request) Failing after 28s
Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
parent
71813a1f8f
commit
ffc6492365
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue