op-packages/luci-app-dnscrypt-proxy2/files/root/etc/uci-defaults/dnscrypt-proxy
github-actions[bot] 32600acc60 🌴 Sync 2026-03-05 23:51:42
2026-03-05 23:51:42 +08:00

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