15 lines
226 B
Bash
15 lines
226 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@nfs[-1]
|
|
add ucitrack nfs
|
|
set ucitrack.@nfs[-1].init=nfs
|
|
commit ucitrack
|
|
EOF
|
|
|
|
/etc/init.d/nfs enable && /etc/init.d/nfs restart
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
|
|
exit 0
|