mirror of
https://github.com/openwrt/packages.git
synced 2025-10-12 08:55:28 +00:00
12 lines
190 B
Bash
12 lines
190 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
|
|
commit firewall
|
|
EOT
|
|
|
|
exit 0
|