sensu-plugins-network-checks 1.2.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 651fd18722857deccf8b625724d9af60f6fa6f11
4
- data.tar.gz: fac9caaa1715e6dce254c730f7292c1b229a5efc
3
+ metadata.gz: fb9c4cca4ac8c2a49aee38ff7234bfeecd250da3
4
+ data.tar.gz: 181ece8d4bd6fc1e4a6ca2db519d677fbdc5a354
5
5
  SHA512:
6
- metadata.gz: 786041c0783aed55f063262ed705438e40af3b662406527a3d9d308190f1597c6c8e539eb08fa82519bb38797208a7e0c6174205b4cc38db4dbfbfe94531ce67
7
- data.tar.gz: fd47db814330cc687da22208cc4b642cbd3cdb0c9b1d271529b5a7994f1d58c7d75978dcbf217d062542edc4aee1faa7d49adb1e659b8c613759d72f649deb6d
6
+ metadata.gz: 2b615fe6b20ab30e2fb4eb5095daca6b353d9dcc900b80334a37602688176802318ff3c9dbe468362c21259c3fbbda5e584e89ca12ce60e9b682abbf8b2da16e
7
+ data.tar.gz: effac84af4bf80910a965c7aa0ba891a726d9ab2c8fbafef87212739ee0c57512ce0f4334684b37277ee8e837936b9e36a18b30316b45d81172b73a3bec6ebae
@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
6
  ## [Unreleased]
7
+
8
+ ## [2.0.0] 2017-06-07
9
+ ### Breaking Changes
10
+ - check-multicast-groups.rb: Stop loading system wide settings from `settings['check-multicast-groups']` and use only the config specified as `-c` (#57 via @maoe)
11
+
7
12
  ## [1.2.0] - 2017-06-07
8
13
  ### Added
9
14
  - Added check-ports-bind.rb (@hanynowsky)
@@ -166,7 +171,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
166
171
 
167
172
  * initial release, same as community repo
168
173
 
169
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.2.0...HEAD
174
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/2.0.0...HEAD
175
+ [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.2.0...2.0.0
170
176
  [1.2.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.1.0...1.2.0
171
177
  [1.1.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/1.0.0...1.1.0
172
178
  [1.0.0]: https://github.com/sensu-plugins/sensu-plugins-network-checks/compare/0.2.4...1.0.0
@@ -49,10 +49,7 @@ class CheckMulticastGroups < Sensu::Plugin::Check::CLI
49
49
  description: 'Path to a config file'
50
50
 
51
51
  def run
52
- targets = settings['check-multicast-groups'] ||= []
53
- extras = load_config(config[:config])['check-multicast-groups'] || []
54
- targets = targets.concat(extras).uniq
55
-
52
+ targets = load_config(config[:config])['check-multicast-groups'] || []
56
53
  critical 'No target muticast groups are specified.' if targets.empty?
57
54
 
58
55
  iface_pat = /[a-zA-Z0-9\.]+/
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsNetworkChecks
2
2
  module Version
3
- MAJOR = 1
4
- MINOR = 2
3
+ MAJOR = 2
4
+ MINOR = 0
5
5
  PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-network-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors