fix: remove debug output from parse_ports_from_file()

This commit is contained in:
Martin Wimpress 2024-05-11 12:10:41 +01:00 committed by Martin Wimpress
parent ed1e85fb12
commit edfafdee5b
1 changed files with 0 additions and 1 deletions

View File

@ -1489,7 +1489,6 @@ function parse_ports_from_file {
# Loop over each line in the file
while IFS= read -r CONF || [ -n "${CONF}" ]; do
echo "Processing line: ${CONF}"
# parse ports
port_name=$(echo "${CONF}" | cut -d',' -f 1)
port_number=$(echo "${CONF}" | cut -d',' -f 2)