sensu-plugins-openldap 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/bin/check-syncrepl.rb +1 -1
- data/lib/sensu-plugins-openldap/version.rb +1 -1
- metadata +5 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e48ff69139b8e64dec33bcd922d7f3b8e6390558f608fb4a91c7ca9e98cf8d56
|
|
4
|
+
data.tar.gz: 6c74aea7254187d3dae053124cfd9bb839fbe87b2ce5f97ca167adc2336c542e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9636d5220067cdcb322f57f3d7abc19a3d57a170dfc62579556228e46a3bc3d0828056dd4c79523b745452cb5f8000925ddbe39040d2ed9c8cde4d68226c70ba
|
|
7
|
+
data.tar.gz: 5728b9dcda50da43f87237591e22d54c2b5cb675775695bca37bd0c1df8437f3b3421bd2160d1e33f4a7cd5b6b4869c82a1e22a8e83be8345aea7fe25bbfb999
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [2.0.1] - 2020-09-26
|
|
9
|
+
- `bin/check-syncrepl.rb`: properly capture exception (@nwea-seanmckinley)
|
|
10
|
+
- bumped `net-ldap` dependency (@dependabot) (@majormoses)
|
|
11
|
+
|
|
8
12
|
## [2.0.0] - 2020-06-22
|
|
9
13
|
### Breaking Changes
|
|
10
14
|
- Update minimum required ruby version to 2.3. Drop unsupported ruby versions.
|
|
@@ -47,7 +51,8 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
|
|
|
47
51
|
### Added
|
|
48
52
|
- initial release
|
|
49
53
|
|
|
50
|
-
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/2.0.
|
|
54
|
+
[Unreleased]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/2.0.1...HEAD
|
|
55
|
+
[2.0.1]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/2.0.0...2.0.1
|
|
51
56
|
[2.0.0]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/1.0.1...2.0.0
|
|
52
57
|
[1.0.1]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/1.0.0...1.0.1
|
|
53
58
|
[1.0.0]: https://github.com/sensu-plugins/sensu-plugins-openldap/compare/0.0.3...1.0.0
|
data/bin/check-syncrepl.rb
CHANGED
|
@@ -147,7 +147,7 @@ class CheckSyncrepl < Sensu::Plugin::Check::CLI
|
|
|
147
147
|
critical message
|
|
148
148
|
end
|
|
149
149
|
end
|
|
150
|
-
rescue StandardError
|
|
150
|
+
rescue StandardError => e
|
|
151
151
|
message = "Cannot connect to #{host}:#{config[:port]}"
|
|
152
152
|
if config[:user]
|
|
153
153
|
message += " as #{config[:user]}"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sensu-plugins-openldap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.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: 2020-
|
|
11
|
+
date: 2020-09-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-ldap
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.16.
|
|
19
|
+
version: 0.16.3
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.16.
|
|
26
|
+
version: 0.16.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: sensu-plugin
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -204,8 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
204
204
|
- !ruby/object:Gem::Version
|
|
205
205
|
version: '0'
|
|
206
206
|
requirements: []
|
|
207
|
-
|
|
208
|
-
rubygems_version: 2.7.7
|
|
207
|
+
rubygems_version: 3.0.8
|
|
209
208
|
signing_key:
|
|
210
209
|
specification_version: 4
|
|
211
210
|
summary: Sensu plugins for OpenLDAP
|