mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
17 lines
311 B
Bash
Executable File
17 lines
311 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete firewall.v2ray
|
|
set firewall.v2ray=include
|
|
set firewall.v2ray.type=script
|
|
set firewall.v2ray.path=/etc/v2ray.include
|
|
set firewall.v2ray.reload=1
|
|
commit firewall
|
|
EOF
|
|
|
|
/etc/init.d/v2raypro stop
|
|
/etc/init.d/v2raypro disable
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|