9 lines
116 B
Text
9 lines
116 B
Text
|
#!/bin/sh
|
||
|
|
||
|
touch /etc/config/example
|
||
|
uci set example.first=first
|
||
|
uci set example.second=second
|
||
|
uci commit
|
||
|
|
||
|
return 0
|