diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/init.d/luci_fw | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/contrib/init.d/luci_fw b/contrib/init.d/luci_fw index 766a5313d..880c87dbe 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) |