6 lines
152 B
Bash
Executable file
6 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
|
|
[ "$(uci get rpcd.@rpcd[0].socket)" = "/var/run/ubus.sock" ] && {
|
|
uci set rpcd.@rpcd[0].socket='/var/run/ubus/ubus.sock'
|
|
uci commit rpcd
|
|
}
|