From 12060c72b26852c1f6da1d3c02eb52f5a6f02851 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 23 May 2026 20:31:37 +0200 Subject: [PATCH] feat: Update warning message (#1157) --- src/network.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/network.sh b/src/network.sh index f6abdbb..24dad61 100644 --- a/src/network.sh +++ b/src/network.sh @@ -707,8 +707,8 @@ getInfo() { BNF="/proc/sys/net/bridge/bridge-nf-call-iptables" if [[ -r "$BNF" ]] && [[ "$(cat "$BNF")" != "0" ]]; then - warn "detected net.bridge.bridge-nf-call-iptables=1 on the host, external LAN clients will not be able to reach this container's ports." - warn "you can fix this issue by running 'sysctl -w net.bridge.bridge-nf-call-iptables=0' on the host (persist in /etc/sysctl.d/)." + warn "external LAN clients may not be able to reach this container, because net.bridge.bridge-nf-call-iptables=1." + warn "you can fix this issue by running 'sysctl -w net.bridge.bridge-nf-call-iptables=0' on the host system." fi fi