8 lines
169 B
Bash
8 lines
169 B
Bash
#!/bin/sh
|
|
[ -n "${IPKG_INSTROOT}" ] || {
|
|
uci set ucitrack.meshwizard="meshwizard"
|
|
uci set ucitrack.meshwizard.exec="/etc/init.d/wizard restart"
|
|
uci commit
|
|
exit 0
|
|
}
|
|
|