Skip to content

Commit

Permalink
Merge pull request #11 from charliwest/patch-1
Browse files Browse the repository at this point in the history
Fix Issue 7
  • Loading branch information
daniel-maclaughlin authored Mar 9, 2023
2 parents 55661cf + 83b9617 commit 435300f
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 435300f

Please sign in to comment.