You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the while-loop over server being executed in their own subprocess, the global error variable err is never changed to 1. Therefore, even if NSEC3PARAM isn't available, the script always exits with 0.
Need to change the while-loop into a for-loop for example.
for server in dig NS ${1} +short; do
echo "Server: ${server} "
....
The text was updated successfully, but these errors were encountered:
Due to the while-loop over server being executed in their own subprocess, the global error variable err is never changed to 1. Therefore, even if NSEC3PARAM isn't available, the script always exits with 0.
Need to change the while-loop into a for-loop for example.
for server in
dig NS ${1} +short
; doecho "Server: ${server} "
....
The text was updated successfully, but these errors were encountered: