sensu-plugins-tripwire 1.2.0 → 1.3.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
  SHA256:
3
- metadata.gz: 2aba033824723addddbedc5e5efbcad409cf172bf1cd1a7932638940553ca4a1
4
- data.tar.gz: de3064fbb253d9c9afdfbf2b002f9831bc010839a0ebd6be82313ae6ac274a84
3
+ metadata.gz: 7e170d0b177c6a9a2f3a1971837571a617f2da6231d26b86317847a665fdbeb2
4
+ data.tar.gz: 2369d6a88ec13ece60f33128430c5375a80d835ce36fb447472db453554f38b5
5
5
  SHA512:
6
- metadata.gz: 1a17953488f748d8ca8c74670b03f9aad69bea89caa2391ba1359d763de6a3b3efc748b437fe600d9eb93ab61324c1cf150f929d66fbe20aae598ed99c192b65
7
- data.tar.gz: 20cd1fbe347a073c15e5884a68e940e86f030415c4b233d293c023efbd8cc5dfca2814bea784efe9044cda961a12fcb9311710e5cc2ed9dc613647b55e27fed7
6
+ metadata.gz: 0c933e49430280777a8e9a1602f2ffaf19b12f44f3d304b3b6ce9a345b2390ccbb9a25915e781e1efb71a9e5dddd5563b62b4b29b54acac55e7717b424947f72
7
+ data.tar.gz: 50b44f1207c3ddc2a6456014196602bdd90208f9a0383300dd22abbe639d2ca4685e0bf476a2bc1b965fbea24a3076844e32d1867709635fdfe7bd628142ac5f
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [1.3.0] - 2020-02-21
9
+ ### Changed
10
+ - Exit OK if there are only minor violations (fixing "Check did not exit!")
11
+
8
12
  ## [1.2.0] - 2020-02-21
9
13
  ### Added
10
14
  - Support for a Tripwire configuration file (e.g. `--config-file tw.cfg`).
@@ -172,5 +172,6 @@ class TripwireCheck < Sensu::Plugin::Check::CLI
172
172
  end
173
173
  end
174
174
  ok 'no violations' if violations.size.zero?
175
+ ok 'minor violations'
175
176
  end
176
177
  end
@@ -1,7 +1,7 @@
1
1
  module SensuPluginsTripwire
2
2
  module Version
3
3
  MAJOR = 1
4
- MINOR = 2
4
+ MINOR = 3
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-tripwire
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors