diff --git a/check_extended_dns.py b/check_extended_dns.py index 7797397..5694293 100755 --- a/check_extended_dns.py +++ b/check_extended_dns.py @@ -37,12 +37,12 @@ nscount = list(itertools.chain.from_iterable(whoiscount)) #print len(nscount) if len(nscount) < nsargscount: - print "Extended_DNS_Check nscount=" + str(nsargscount) + "|whoiscount=" + str(len(nscount)) + "| CRITICAL - WHOIS DNS servers do not match provided DNS nameservers." + print "Extended_DNS_Check nscount="+str(nsargscount)+"|whoiscount="+str(len(nscount))+" CRITICAL - WHOIS DNS servers do not match provided DNS nameservers." sys.exit(2) elif len(nscount) > nsargscount: - print "Extended_DNS_Check nscount=" + str(nsargscount) + "| whoiscount=" + str(len(nscount)) + "| WARNING - WHOIS DNS servers do not match. \ + print "Extended_DNS_Check nscount="+str(nsargscount)+"|whoiscount="+ str(len(nscount))+" WARNING - WHOIS DNS servers do not match. \ There are more DNS servers from the WHOIS datbase than in your query." sys.exit(1) else: - print("0 Extended_DNS_Check nscount=" + str(nsargscount) + "| whoiscount=" + str(len(nscount)) + "| OK - all DNS server match") + print("0 Extended_DNS_Check nscount="+str(nsargscount)+"|whoiscount="+str(len(nscount))+" OK - all DNS server match") sys.exit(0)