Skip to content

Commit

Permalink
Fix Issue 7
Browse files Browse the repository at this point in the history
Removed "-G 3" as per #7 suggested.
  • Loading branch information
charliwest authored Mar 9, 2023
1 parent 55661cf commit 83b9617
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jamf Environment Test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ function CalculateHostInfoTables () {
STATUS=$(/usr/bin/nc -z -G 3 ${HOSTNAME} ${PORT} 2>&1 | /usr/bin/awk '{print $7}')
else
# UDP goes direct... not proxied.
STATUS=$(/usr/bin/nc -u -z -G 3 ${HOSTNAME} ${PORT} 2>&1 | /usr/bin/awk '{print $7}')
STATUS=$(/usr/bin/nc -u -z ${HOSTNAME} ${PORT} 2>&1 | /usr/bin/awk '{print $7}')

fi

Expand Down

0 comments on commit 83b9617

Please sign in to comment.