12 lines
182 B
Bash
Executable File
12 lines
182 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@vsftpd[-1]
|
|
add ucitrack vsftpd
|
|
set ucitrack.@vsftpd[-1].init=vsftpd
|
|
commit ucitrack
|
|
EOF
|
|
|
|
rm -f /tmp/luci-vsftpd
|
|
exit 0
|