mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 13:00:05 +08:00
14 lines
251 B
Bash
14 lines
251 B
Bash
#!/bin/sh
|
|
|
|
uci -q batch <<-EOT
|
|
delete firewall.bcp38
|
|
set firewall.bcp38=include
|
|
set firewall.bcp38.type=script
|
|
set firewall.bcp38.path=/usr/lib/bcp38/run.sh
|
|
set firewall.bcp38.family=IPv4
|
|
set firewall.bcp38.reload=1
|
|
commit firewall
|
|
EOT
|
|
|
|
exit 0
|