No padding

This commit is contained in:
Bob Mottram 2018-03-18 10:07:05 +00:00
parent e509d5a196
commit 4702a67fa6
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ function show_firewall {
while read -r line; do
firewall_name=$(echo "$line" | awk -F '=' '{print $1}')
firewall_port=$(echo "$line" | awk -F '=' '{print $2}')
W+=("$(pad_string "${firewall_name}")" "${firewall_port}")
W+=("${firewall_name}" "${firewall_port}")
done < "$FIREWALL_CONFIG"
# shellcheck disable=SC2068