sensu-settings 10.7.0 → 10.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sensu/settings/validators/check.rb +2 -0
- data/sensu-settings.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17c65715430ac721ff3cf07179dda5cff74b2253
|
4
|
+
data.tar.gz: 7a51aacf7d3cbfe4a7a36ffa9e7f00aa969da890
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 266954968859361d1cd06cf3486535468236e3ac4d482311527df6c7990391e42ecc14271bfeadbea69a6cd889c836eab6a481a7705874417c68dcbff4c9ce6d
|
7
|
+
data.tar.gz: a0207bb5a55f49a84e2f455e860fcd3b358a34ff6aadfb12ebdc56635b9fed69e3b33132533fc2e3313e25dfc486e69abc61908a21a62f98ca555e7d93019218
|
@@ -28,6 +28,8 @@ module Sensu
|
|
28
28
|
invalid(check, "either check command or extension must be set")
|
29
29
|
must_be_a_numeric_if_set(check[:timeout]) ||
|
30
30
|
invalid(check, "check timeout must be numeric")
|
31
|
+
must_be_boolean_if_set(check[:stdin]) ||
|
32
|
+
invalid(check, "check stdin must be boolean")
|
31
33
|
end
|
32
34
|
|
33
35
|
# Validate check source.
|
data/sensu-settings.gemspec
CHANGED