sensu-plugins-memory-checks 0.0.4 → 0.0.5

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: a1d865643df4ad6e92f5e3a82afab97cdc7d460b
4
- data.tar.gz: f7a371038a5b252cf868657985317af65473c471
3
+ metadata.gz: 16fadb9f270e21852cda6c7aa1910cb2c635cf2d
4
+ data.tar.gz: 5953e5e1e94f2cc8136275f376a11c977408770e
5
5
  SHA512:
6
- metadata.gz: 0513e7e214c5899deabf0094042967c5d38b10de5fafded0d6ceffe42c1976a3cf10e498a8d51c94d6077202996531314fd5d6a49bf5c06c23516ca43d93c791
7
- data.tar.gz: 36fb6ddb3714014a1cfa9f98a8abc7988dc6464312e8a3b69c287c23ee29628075b3aa52440a5b84902c7d634930971361c29ce66e865d5cb8e62a70e6ea5fc8
6
+ metadata.gz: f2d7e865052c131db2d14a84446b8200ade62ad0e211bf3599e25fab1225446acf92c898076966dc2cc28e02f162acf96c6a4c0ac91305fb7797af5e42641759
7
+ data.tar.gz: 0e475773accf30edaa648dd04c04b69e1998dbfc505fcfd4917d6aa833e31b7d6c84e31943f941e27275f5235bdf20256f18f659735bf83e66e59ac899642b03
checksums.yaml.gz.sig CHANGED
@@ -1,2 +1 @@
1
- ;L�\�M �:�3Ď�5����RMsF��͋!�!�q��)FR<����q�<*_�
2
- *7��p�wtKŬ�|{��T�i�jȜ‡���t��^�Hm��[kt�r��1tH�;P�Ljϴ���Eb�<���&���BA�}�߈4�����j ��-넊:�W�U��ȶ�˂&�&?�-�JFv���7��T�»��6UTe_����J�?�V�v����o�����$�o�����j����=s
1
+ >|E����$*�#��8�ʯb{'I��^�!�6gwKcW�f�R����=�����K,�H�A���>�o����'��)wmz-�z��Va��(I|q74o@�HiJ����W�2����
data.tar.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -3,7 +3,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3
3
 
4
4
  This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
5
5
 
6
- ## Unreleased][unreleased]
6
+ ## Unreleased
7
+
8
+ ## [0.0.4] - 2015-07-14
9
+ ### Fixed
10
+ - fixed bad script filenames that prevented the checks for executing
7
11
 
8
12
  ## [0.0.4] - 2015-07-14
9
13
  ### Changed
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Sensu-Plugins-memory-checks
2
2
 
3
- [ ![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-memory-checks.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-memory-checks)
3
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-memory-checks.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-memory-checks)
4
4
  [![Gem Version](https://badge.fury.io/rb/sensu-plugins-memory-checks.svg)](http://badge.fury.io/rb/sensu-plugins-memory-checks)
5
5
  [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-memory-checks/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-memory-checks)
6
6
  [![Test Coverage](https://codeclimate.com/github/sensu-plugins/sensu-plugins-memory-checks/badges/coverage.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-memory-checks)
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  bin_dir = File.expand_path(File.dirname(__FILE__))
4
- shell_script_path = File.join(bin_dir, 'check-memory-pcnt.sh')
4
+ shell_script_path = File.join(bin_dir, 'check-memory-percent.sh')
5
5
 
6
6
  exec shell_script_path, *ARGV
data/bin/check-memory.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  bin_dir = File.expand_path(File.dirname(__FILE__))
4
- shell_script_path = File.join(bin_dir, 'check-mem.sh')
4
+ shell_script_path = File.join(bin_dir, 'check-memory.sh')
5
5
 
6
6
  exec shell_script_path, *ARGV
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  bin_dir = File.expand_path(File.dirname(__FILE__))
4
- shell_script_path = File.join(bin_dir, 'check-swap-percentage.sh')
4
+ shell_script_path = File.join(bin_dir, 'check-swap-percent.sh')
5
5
 
6
6
  exec shell_script_path, *ARGV
@@ -2,7 +2,7 @@ module SensuPluginsMemoryChecks
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 4
5
+ PATCH = 5
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-memory-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu Plugins and contributors
@@ -30,7 +30,7 @@ cert_chain:
30
30
  8sHuVruarogxxKPBzlL2is4EUb6oN/RdpGx2l4254+nyR+abg//Ed27Ym0PkB4lk
31
31
  HP0m8WSjZmFr109pE/sVsM5jtOCvogyujQOjNVGN4gz1wwPr
32
32
  -----END CERTIFICATE-----
33
- date: 2015-07-14 00:00:00.000000000 Z
33
+ date: 2015-07-15 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: sensu-plugin
metadata.gz.sig CHANGED
Binary file