mirror of
https://github.com/openwrt/luci.git
synced 2025-04-18 22:26:16 +00:00
14 lines
294 B
Bash
14 lines
294 B
Bash
#!/bin/sh
|
|
|
|
touch /etc/config/example
|
|
uci set example.first=first
|
|
uci set example.second=second
|
|
uci set example.third=third
|
|
uci set example.animals=animals
|
|
uci set example.animals.num_cats=1
|
|
uci set example.animals.num_dogs=2
|
|
uci set example.animals.num_parakeets=4
|
|
uci commit example
|
|
|
|
return 0
|