From 2c1bcffb6d3b2ba832080531f2d2ac81b486fa4e Mon Sep 17 00:00:00 2001 From: itdoginfo Date: Sat, 3 May 2025 18:11:49 +0300 Subject: [PATCH] fix iptables --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index bceba00..713efd0 100755 --- a/install.sh +++ b/install.sh @@ -457,7 +457,7 @@ check_system() { done fi - if opkg list-installed | grep -qE "iptables|kmod-iptab"; then + if opkg list-installed | grep -q "iptables-mod-extra"; then printf "\033[31;1mFound incompatible iptables packages. If you're using FriendlyWrt: https://t.me/itdogchat/44512/181082\033[0m\n" fi }