File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
lib/sensu-plugins-disk-checks Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,8 @@ https://mathias-kettner.de/checkmk_filesystems.html
192
192
### Added
193
193
- initial release
194
194
195
- [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/4.0.0...HEAD
195
+ [ Unreleased ] : https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/4.0.1...HEAD
196
+ [ 4.0.1 ] : https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/4.0.0...4.0.1
196
197
[ 4.0.0 ] : https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/3.1.1...4.0.0
197
198
[ 3.1.1 ] : https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/3.1.0...3.1.1
198
199
[ 3.1.0 ] : https://github.com/sensu-plugins/sensu-plugins-disk-checks/compare/3.0.1...3.1.0
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ def find_devices
272
272
# Return parameter value if it's defined
273
273
if config [ :devices ] != 'all'
274
274
config [ :devices ] . split ( ',' ) . each do |dev |
275
- jconfig = @hardware . find { |h1 | h1 [ :path ] == dev }
275
+ jconfig = @hardware . find { |d | d [ :path ] == dev }
276
276
277
277
if jconfig . nil?
278
278
override = nil
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module SensuPluginsDiskChecks
2
2
module Version
3
3
MAJOR = 4
4
4
MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
7
7
VER_STRING = [ MAJOR , MINOR , PATCH ] . compact . join ( '.' )
8
8
end
You can’t perform that action at this time.
0 commit comments