diff options
Diffstat (limited to 'nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_raid')
2 files changed, 23 insertions, 0 deletions
diff --git a/nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_raid/no_epn b/nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_raid/no_epn new file mode 100644 index 0000000..9ce8a44 --- /dev/null +++ b/nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_raid/no_epn @@ -0,0 +1,8 @@ +--- a/check_raid/check_raid ++++ b/check_raid/check_raid +@@ -1,4 +1,5 @@ + #!/usr/bin/perl ++# nagios: -epn + + # This chunk of stuff was generated by App::FatPacker. To find the original + # file's code, look for the end of this BEGIN block or the string 'FATPACK' diff --git a/nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_raid/prefer_cciss_vol_status_over_hpacucli b/nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_raid/prefer_cciss_vol_status_over_hpacucli new file mode 100644 index 0000000..c8def56 --- /dev/null +++ b/nagios-plugins-contrib-24.20190301~bpo9+1/debian/patches/check_raid/prefer_cciss_vol_status_over_hpacucli @@ -0,0 +1,15 @@ +--- a/check_raid/check_raid ++++ b/check_raid/check_raid +@@ -3975,8 +3975,10 @@ sub check { + package hpacucli; + use base 'plugin'; + +-# register +-push(@utils::plugins, __PACKAGE__); ++# register if cciss_vol_status is not available ++if (! utils::which('cciss_vol_status')) { ++ push(@utils::plugins, __PACKAGE__); ++} + + sub program_names { + __PACKAGE__; |