* luci-app-example: Update with more documentation, examples * Update translations file * Move more YAML support to .md file, improve README * luci-app-example: Update with more documentation, examples * luci-app-example: Fix missed call to load_sample_yaml * Format with tabs by using jsbeautify
9 lines
144 B
Bash
9 lines
144 B
Bash
#!/bin/sh
|
|
|
|
touch /etc/config/example
|
|
uci set example.first=first
|
|
uci set example.second=second
|
|
uci set example.third=third
|
|
uci commit
|
|
|
|
return 0
|