From 0e95de6083c0c10b277df966ebcbcbf173e131c8 Mon Sep 17 00:00:00 2001 From: bol-van Date: Thu, 8 Jan 2026 20:43:20 +0300 Subject: [PATCH] replace spaces with tabs --- init.d/custom.d.examples.linux/99-lan-filter | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.d/custom.d.examples.linux/99-lan-filter b/init.d/custom.d.examples.linux/99-lan-filter index 7b60d6a..f100a3d 100644 --- a/init.d/custom.d.examples.linux/99-lan-filter +++ b/init.d/custom.d.examples.linux/99-lan-filter @@ -110,7 +110,7 @@ zapret_custom_firewall_nft() fi [ "$DISABLE_IPV4" != 1 ] && { - make_comma_list subnets $FILTER_LAN_IP + make_comma_list subnets $FILTER_LAN_IP nft_create_set $FILTER_LAN_SET "type ipv4_addr; size $FILTER_LAN_IPSET_SIZE; auto-merge; flags interval;" nft_flush_set $FILTER_LAN_SET nft_add_set_element $FILTER_LAN_SET "$subnets" @@ -120,7 +120,7 @@ zapret_custom_firewall_nft() nft_add_rule forward_lan_filter $rule } [ "$DISABLE_IPV6" != 1 ] && { - make_comma_list subnets $FILTER_LAN_IP6 + make_comma_list subnets $FILTER_LAN_IP6 nft_create_set $FILTER_LAN_SET6 "type ipv6_addr; size $FILTER_LAN_IPSET_SIZE; auto-merge; flags interval;" nft_flush_set $FILTER_LAN_SET6 nft_add_set_element $FILTER_LAN_SET6 "$subnets"