sensu-plugins-memory-checks 3.0.1 → 3.0.2

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: 9d2f4423277e52ae2eeea2d484fd78bace17403c
4
- data.tar.gz: d21cf78d48370fe3fc3ded62c2202148048550f8
3
+ metadata.gz: ec6d4660a7f927b54cd274e22ceef287f513d13a
4
+ data.tar.gz: 9d0007c7913e819aa355062fd7fada718e972cf1
5
5
  SHA512:
6
- metadata.gz: defdd9f722e46127465c71adeab6561529bb81479ec98c785562ac14d3d7b1b4dd798eabcb369e0ff3b30a240680a347834819103fa19985639ad26b7fe20d82
7
- data.tar.gz: 54639ba008776797ddad4de5109b54eb2abd9613c12f60516fe132c23c2d7ce4b37670178272fd01be503dd9cf20aa0e1d5451418ef6f0964d07cac9cf60619b
6
+ metadata.gz: d150f834df549dbe372c56734e4c29e3795b67e4e04b4888bc2f8f3e7d929941ce8fefcc1efd3aaa770de60ff394cd4c3c55fb8eb1fdd0df1bdbcf14593795f0
7
+ data.tar.gz: 06c7b2cb773efe88af5b9782e686788b10019e8fc2883ff42ae8a684d54f3c3250ba50b65cb6bc6d8122ff03e2f101c189235111692a5031412d7f206d77b36b
data/CHANGELOG.md CHANGED
@@ -4,9 +4,14 @@ 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
+ ## [3.0.2] - 2017-07-31
9
+ ### Fixed
10
+ - check-memory-percent.rb, check-memory.rb: fix shell call response when running on non en_US locale systems (@stefan-walluhn)
11
+
7
12
  ## [3.0.1] - 2017-07-07
8
13
  ### Fixed
9
- - check-memory.sh: fixed a syntax error preventing it from running (@majormoses)
14
+ - check-memory.sh: fixed a syntax error preventing it from running (@majormoses)
10
15
 
11
16
  ### [3.0.0] - 2017-07-07
12
17
  ### Added
@@ -109,7 +114,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
109
114
  ### Added
110
115
  - initial release
111
116
 
112
- [unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...HEAD
117
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...HEAD
118
+ [3.0.2]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...3.0.2
113
119
  [3.0.1]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.0...3.0.1
114
120
  [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.1.0...3.0.0
115
121
  [2.1.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.0.0...2.1.0
@@ -3,4 +3,4 @@
3
3
  bin_dir = File.expand_path(File.dirname(__FILE__))
4
4
  shell_script_path = File.join(bin_dir, File.basename($PROGRAM_NAME, '.rb') + '.sh')
5
5
 
6
- exec shell_script_path, *ARGV
6
+ exec shell_script_path, *ARGV, unsetenv_others: true
data/bin/check-memory.rb CHANGED
@@ -3,4 +3,4 @@
3
3
  bin_dir = File.expand_path(File.dirname(__FILE__))
4
4
  shell_script_path = File.join(bin_dir, File.basename($PROGRAM_NAME, '.rb') + '.sh')
5
5
 
6
- exec shell_script_path, *ARGV
6
+ exec shell_script_path, *ARGV, unsetenv_others: true
@@ -2,7 +2,7 @@ module SensuPluginsMemoryChecks
2
2
  module Version
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- PATCH = 1
5
+ PATCH = 2
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-memory-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-10 00:00:00.000000000 Z
11
+ date: 2017-07-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin