kurchatov 0.4.2 → 0.4.3
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/app/Gemfile +1 -1
- data/app/Gemfile.lock +2 -2
- data/debian/changelog +6 -0
- data/lib/kurchatov/plugin/config.rb +2 -3
- data/lib/kurchatov/version.rb +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: 43418a85c9b048bcfdf6c12bf698fd04ac019d2e
|
|
4
|
+
data.tar.gz: 76d90c39e780799a54c8804b30b32b898638e66f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d35e7de6abfa9723ec779d8b59c62be8a772a09333d61b32c13c7c5d317a8e81ebaefce22a638f6eb824b437c50acb22a66fc2f990c431b9f69a22f81c928a70
|
|
7
|
+
data.tar.gz: 471e92153a3e5cde4df3bd0fb93f74ce766329806e3deb6cc6164917dac04e162d51fe4ca1aff46e5902fb23f5cb2ac21458916d2f14f83bf55c2f5760928c72
|
data/app/Gemfile
CHANGED
data/app/Gemfile.lock
CHANGED
|
@@ -14,7 +14,7 @@ GEM
|
|
|
14
14
|
file-tail (1.0.12)
|
|
15
15
|
tins (~> 0.5)
|
|
16
16
|
ipaddress (0.8.0)
|
|
17
|
-
kurchatov (0.4.
|
|
17
|
+
kurchatov (0.4.2)
|
|
18
18
|
beefcake (>= 0.3.5)
|
|
19
19
|
ohai
|
|
20
20
|
libyajl2 (1.0.1)
|
|
@@ -54,7 +54,7 @@ DEPENDENCIES
|
|
|
54
54
|
beefcake (= 0.5.0)
|
|
55
55
|
ffi-rzmq
|
|
56
56
|
file-tail
|
|
57
|
-
kurchatov (= 0.4.
|
|
57
|
+
kurchatov (= 0.4.2)
|
|
58
58
|
net-ntp
|
|
59
59
|
net-ping
|
|
60
60
|
parallel
|
data/debian/changelog
CHANGED
|
@@ -18,12 +18,11 @@ module Kurchatov
|
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
def self.load_plugins(plugins_path, config_file)
|
|
21
|
-
Log.
|
|
22
|
-
exit(Kurchatov::Config[:ERROR_CONFIG]) unless File.exists?(config_file)
|
|
21
|
+
Log.info("Config file #{config_file} not found") unless File.exists?(config_file)
|
|
23
22
|
@all_plugins = Kurchatov::Plugins::DSL.load_riemann_plugins(plugins_path)
|
|
24
23
|
@all_names = Array.new
|
|
25
24
|
@plugins_to_run = Array.new
|
|
26
|
-
config = YAML.load_file(config_file)
|
|
25
|
+
config = YAML.load_file(config_file) rescue false
|
|
27
26
|
config = {} and Log.info("Empty config file '#{config_file}'") if config == false
|
|
28
27
|
config.each do |name, val|
|
|
29
28
|
@all_names << name
|
data/lib/kurchatov/version.rb
CHANGED