From ec55c6f55196c7655ff2d34e9ad260dedf8c2ae3 Mon Sep 17 00:00:00 2001 From: bol-van Date: Fri, 16 Jan 2026 12:53:55 +0300 Subject: [PATCH] install_easy: always write FWTYPE --- common/installer.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/installer.sh b/common/installer.sh index 453a70ad..574838fe 100644 --- a/common/installer.sh +++ b/common/installer.sh @@ -827,7 +827,9 @@ select_fwtype() echo WARNING ! if you need large lists it may be necessary to fall back to iptables+ipset firewall } echo select firewall type : - ask_list FWTYPE "iptables nftables" "$FWTYPE" && write_config_var FWTYPE + ask_list FWTYPE "iptables nftables" "$FWTYPE" + # always write config var to prevent auto discovery every time + write_config_var FWTYPE } dry_run_tpws_()