mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
11 lines
177 B
Bash
Executable File
11 lines
177 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@cifs[-1]
|
|
add ucitrack cifs
|
|
set ucitrack.@cifs[-1].init=cifs
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0 |