sensu-plugins-memory-checks 3.0.0 → 3.0.1

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: 0c0f5b4490651c2017746c39c18cb9c4161bd4d7
4
- data.tar.gz: ab03f6f7901e7b1ff07ea9e93066dedb807045be
3
+ metadata.gz: 9d2f4423277e52ae2eeea2d484fd78bace17403c
4
+ data.tar.gz: d21cf78d48370fe3fc3ded62c2202148048550f8
5
5
  SHA512:
6
- metadata.gz: 6902f9bf9a2431c36348322d37d29b62f5586612b91e9e6e4461115758247c3cec9bf2c8bdc6e2225c05d1dcfd3092f35079dcc9810c1cfb74d2bf67b9a4b58f
7
- data.tar.gz: 6620abe8c8fa5b7fabb58426b5e3e8d4f6c331ffbd5fbdf7bca941f521560f4dbf8aa6a5eac7ea4f2f22eb4a65186cd11eb1753f3304882633bb3f4d7d94fd5a
6
+ metadata.gz: defdd9f722e46127465c71adeab6561529bb81479ec98c785562ac14d3d7b1b4dd798eabcb369e0ff3b30a240680a347834819103fa19985639ad26b7fe20d82
7
+ data.tar.gz: 54639ba008776797ddad4de5109b54eb2abd9613c12f60516fe132c23c2d7ce4b37670178272fd01be503dd9cf20aa0e1d5451418ef6f0964d07cac9cf60619b
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ 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
+ ## [3.0.1] - 2017-07-07
8
+ ### Fixed
9
+ - check-memory.sh: fixed a syntax error preventing it from running (@majormoses)
10
+
7
11
  ### [3.0.0] - 2017-07-07
8
12
  ### Added
9
13
  - ruby 2.4 testing (@majormoses)
@@ -105,7 +109,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
105
109
  ### Added
106
110
  - initial release
107
111
 
108
- [unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.0...HEAD
112
+ [unreleased]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/3.0.1...HEAD
113
+ [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
109
114
  [3.0.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.1.0...3.0.0
110
115
  [2.1.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/2.0.0...2.1.0
111
116
  [2.0.0]: https://github.com/sensu-plugins/sensu-plugins-memory-checks/compare/1.0.2...2.0.0
data/bin/check-memory.sh CHANGED
@@ -41,7 +41,7 @@ if [ "$hlp" = "yes" ]; then
41
41
  exit 0
42
42
  fi
43
43
 
44
- if [ -z "$WARN"] || [ -z "$CRIT" ]; then
44
+ if [ -z "$WARN" ] || [ -z "$CRIT" ]; then
45
45
  echo "You must provide both warning and critical values"
46
46
  exit 3
47
47
  fi
@@ -2,7 +2,7 @@ module SensuPluginsMemoryChecks
2
2
  module Version
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
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.0
4
+ version: 3.0.1
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-07 00:00:00.000000000 Z
11
+ date: 2017-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin