10 lines
211 B
Bash
10 lines
211 B
Bash
# create a symlink to this file at /lib/functions.sh for testing
|
|
|
|
# mock implementation of uci_get that always returns the default value
|
|
uci_get() {
|
|
for item in "$@"; do
|
|
last=$item
|
|
done
|
|
echo "$last"
|
|
}
|