mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-07-28 20:11:53 +08:00
26 lines
653 B
Bash
26 lines
653 B
Bash
#!/bin/sh
|
|
[ ! -f "/usr/share/ucitrack/luci-app-dnscrypt_proxy.json" ] && {
|
|
cat > /usr/share/ucitrack/luci-app-dnscrypt_proxy.json << EEOF
|
|
{
|
|
"config": "dnscrypt_proxy",
|
|
"init": "dnscrypt_proxy"
|
|
}
|
|
EEOF
|
|
}
|
|
|
|
uci -q batch <<-EOF >/dev/null
|
|
delete ucitrack.@dnscrypt_proxy[-1]
|
|
add ucitrack dnscrypt_proxy
|
|
set ucitrack.@dnscrypt_proxy[-1].init=dnscrypt-proxy
|
|
commit ucitrack
|
|
delete firewall.dnscrypt_proxy
|
|
set firewall.dnscrypt_proxy=include
|
|
set firewall.dnscrypt_proxy.type=script
|
|
set firewall.dnscrypt_proxy.path=/var/etc/dnscrypt-proxy.include
|
|
set firewall.dnscrypt_proxy.reload=1
|
|
commit firewall
|
|
EOF
|
|
|
|
rm -f /tmp/luci-indexcache
|
|
exit 0
|