diff --git a/net/haproxy/pkg-descr b/net/haproxy/pkg-descr index 758d0a102..cba85b6e4 100644 --- a/net/haproxy/pkg-descr +++ b/net/haproxy/pkg-descr @@ -14,6 +14,9 @@ which may result in incompatible changes for some users. Changed: * upgrade to HAProxy 2.4 release series (#2644) +Removed: +* remove deprecated option tune.chksize (#2644) + 3.9 Added: diff --git a/net/haproxy/src/opnsense/mvc/app/controllers/OPNsense/HAProxy/forms/generalTuning.xml b/net/haproxy/src/opnsense/mvc/app/controllers/OPNsense/HAProxy/forms/generalTuning.xml index ea55662de..ff481bd13 100644 --- a/net/haproxy/src/opnsense/mvc/app/controllers/OPNsense/HAProxy/forms/generalTuning.xml +++ b/net/haproxy/src/opnsense/mvc/app/controllers/OPNsense/HAProxy/forms/generalTuning.xml @@ -48,13 +48,6 @@
NOTE: It is strongly recommended not to change this from the default value, as very low values will break some services such as statistics, and values larger than default size will increase memory usage, possibly causing the system to run out of memory.
]]>
true - - haproxy.general.tuning.checkBufferSize - - text - - true - haproxy.general.tuning.luaMaxMem diff --git a/net/haproxy/src/opnsense/mvc/app/models/OPNsense/HAProxy/HAProxy.xml b/net/haproxy/src/opnsense/mvc/app/models/OPNsense/HAProxy/HAProxy.xml index ff4e24be8..9ef6f6748 100644 --- a/net/haproxy/src/opnsense/mvc/app/models/OPNsense/HAProxy/HAProxy.xml +++ b/net/haproxy/src/opnsense/mvc/app/models/OPNsense/HAProxy/HAProxy.xml @@ -109,13 +109,6 @@ Please specify a value between 1024 and 1048576. N - - 16384 - 1024 - 1048576 - Please specify a value between 1024 and 1048576. - N - 2 0 diff --git a/net/haproxy/src/opnsense/service/templates/OPNsense/HAProxy/haproxy.conf b/net/haproxy/src/opnsense/service/templates/OPNsense/HAProxy/haproxy.conf index 71e377f18..94403c1ae 100644 --- a/net/haproxy/src/opnsense/service/templates/OPNsense/HAProxy/haproxy.conf +++ b/net/haproxy/src/opnsense/service/templates/OPNsense/HAProxy/haproxy.conf @@ -975,9 +975,6 @@ global {% if OPNsense.HAProxy.general.tuning.bogusProxyEnabled|default("") == '1' %} pp2-never-send-local {% endif %} -{% if OPNsense.HAProxy.general.tuning.checkBufferSize|default("") != "" %} - tune.chksize {{OPNsense.HAProxy.general.tuning.checkBufferSize}} -{% endif %} {% if OPNsense.HAProxy.general.tuning.bufferSize|default("") != "" %} tune.bufsize {{OPNsense.HAProxy.general.tuning.bufferSize}} {% endif %}