vagrant-hiera 0.1.31 → 0.2.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.
data/lib/vagrant-hiera/config.rb
CHANGED
|
@@ -16,11 +16,11 @@ module VagrantHiera
|
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def config_path
|
|
19
|
-
File.expand_path(@config_path)
|
|
19
|
+
File.expand_path(@config_path) rescue ''
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
def data_path
|
|
23
|
-
File.expand_path(@data_path)
|
|
23
|
+
File.expand_path(@data_path) rescue ''
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
def set?
|
|
@@ -28,9 +28,12 @@ module VagrantHiera
|
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
def validate(env, errors)
|
|
31
|
-
|
|
32
|
-
errors.add("
|
|
33
|
-
errors.add("
|
|
31
|
+
errors.add("Config path can not be empty") if config_path.empty?
|
|
32
|
+
errors.add("Config file can not be empty") if config_file.empty?
|
|
33
|
+
errors.add("Data path can not be empty") if data_path.empty?
|
|
34
|
+
config = File.join("#{config_path}", "#{config_file}")
|
|
35
|
+
errors.add("#{config} does not exist.") unless File.exists?(config)
|
|
36
|
+
errors.add("#{data_path} does not exist.") unless File.exists?("#{data_path}")
|
|
34
37
|
end
|
|
35
38
|
end
|
|
36
39
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vagrant-hiera
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-06-
|
|
12
|
+
date: 2012-06-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: vagrant
|