Browse Source

net/dnscrypt-proxy: fix block_ipv6 param in init script

Signed-off-by: Damiano Renfer <damiano.renfer@gmail.com>
lilik-openwrt-22.03
Damiano Renfer 7 years ago
parent
commit
c3b0a36db4
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      net/dnscrypt-proxy/Makefile
  2. +2
    -2
      net/dnscrypt-proxy/files/dnscrypt-proxy.init

+ 1
- 1
net/dnscrypt-proxy/Makefile View File

@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=dnscrypt-proxy
PKG_VERSION:=1.9.5
PKG_RELEASE:=2
PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://download.dnscrypt.org/dnscrypt-proxy \


+ 2
- 2
net/dnscrypt-proxy/files/dnscrypt-proxy.init View File

@ -53,9 +53,9 @@ create_config_file() {
append_param_not_empty "QueryLogFile" "$query_log_file" $config_path
if [ $plugins_support_enabled -ne 0 ]
then
append_yes_no "block_ipv6" $block_ipv6 $config_path
append_yes_no "BlockIPv6" $block_ipv6 $config_path
else
log_ignored_param "BlockIPv6"
log_ignored_param "block_ipv6"
fi
if [ $plugins_support_enabled -ne 0 ]


Loading…
Cancel
Save