From 55c2ac261f7bc865cf7fc2abe6c69ffd87a098ac Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Thu, 3 Apr 2008 10:10:48 +0000 Subject: [PATCH] * Fixed firewall script --- contrib/init.d/luci_fw | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/init.d/luci_fw b/contrib/init.d/luci_fw index 766a5313de..880c87dbe3 100644 --- a/contrib/init.d/luci_fw +++ b/contrib/init.d/luci_fw @@ -9,7 +9,11 @@ apply_portfw() { config_get to "$cfg" to ports=$(echo $to | cut -sd: -f2) - [ -n "$ports" ] && ports="--dport $(echo $ports | sed -e 's/-/:/')" + if [ -n "$ports" ]; then + ports="--dport $(echo $ports | sed -e 's/-/:/')" + else + ports="--dport $dport" + fi ip=$(echo $to | cut -d: -f1) -- 2.30.2