From: Peter Palfrader Date: Mon, 22 May 2017 11:11:47 +0000 (+0200) Subject: dsa-check-dnssec-delegation: Net::DNS::RR::DNSKEY no longer has an is_sep() method... X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fdsa-nagios.git;a=commitdiff_plain;h=98d2967079ff1cdfc2aa176aa68434661cf15d4f dsa-check-dnssec-delegation: Net::DNS::RR::DNSKEY no longer has an is_sep() method on stretch --- diff --git a/dsa-nagios-checks/checks/dsa-check-dnssec-delegation b/dsa-nagios-checks/checks/dsa-check-dnssec-delegation index e614bf2..65b48b0 100755 --- a/dsa-nagios-checks/checks/dsa-check-dnssec-delegation +++ b/dsa-nagios-checks/checks/dsa-check-dnssec-delegation @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright (c) 2010, 2014, 2015 Peter Palfrader +# Copyright (c) 2010, 2014, 2015, 2017 Peter Palfrader # # 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; } diff --git a/dsa-nagios-checks/debian/changelog b/dsa-nagios-checks/debian/changelog index a9ab44c..8b83fb2 100644 --- a/dsa-nagios-checks/debian/changelog +++ b/dsa-nagios-checks/debian/changelog @@ -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 Mon, 20 Mar 2017 09:46:50 +0100