* Fixed firewall script
This commit is contained in:
parent
7815fbedcd
commit
55c2ac261f
1 changed files with 5 additions and 1 deletions
|
@ -9,7 +9,11 @@ apply_portfw() {
|
||||||
config_get to "$cfg" to
|
config_get to "$cfg" to
|
||||||
|
|
||||||
ports=$(echo $to | cut -sd: -f2)
|
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)
|
ip=$(echo $to | cut -d: -f1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue