dsa-check-dnssec-delegation: Net::DNS::RR::DNSKEY no longer has an is_sep() method...
authorPeter Palfrader <peter@palfrader.org>
Mon, 22 May 2017 11:11:47 +0000 (13:11 +0200)
committerPeter Palfrader <peter@palfrader.org>
Mon, 22 May 2017 11:11:47 +0000 (13:11 +0200)
dsa-nagios-checks/checks/dsa-check-dnssec-delegation
dsa-nagios-checks/debian/changelog

index e614bf2..65b48b0 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# Copyright (c) 2010, 2014, 2015 Peter Palfrader <peter@palfrader.org>
+# Copyright (c) 2010, 2014, 2015, 2017 Peter Palfrader <peter@palfrader.org>
 #
 # Permission is hereby granted, free of charge, to any person obtaining
 # a copy of this software and associated documentation files (the
@@ -77,7 +77,7 @@ sub get_tag_generic {
                }
 
                # for now only handle KSKs, i.e. keys with the SEP flag set
-               if ($type eq 'DNSKEY' && !($rr->is_sep)) {
+               if ($type eq 'DNSKEY' && !($rr->sep)) {
                        push @zsks, $tag;
                        next;
                }
index a9ab44c..8b83fb2 100644 (file)
@@ -1,6 +1,8 @@
 dsa-nagios-checks (111) UNRELEASED; urgency=medium
 
   * Rename dsa-check_puppet_agent -> dsa-check-puppet_agent
+  * dsa-check-dnssec-delegation: Net::DNS::RR::DNSKEY no longer has
+    an is_sep() method.  Update.
 
  -- Peter Palfrader <weasel@debian.org>  Mon, 20 Mar 2017 09:46:50 +0100