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.
@@ -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
- config_file = File.join("#{config_path}", "#{config_file}")
32
- errors.add("#{File.new(config_file).absolute_path} does not exist.") unless File.exists? config_file
33
- errors.add("#{File.new(data_path).absolute_path} does not exist.") unless File.exists? "#{data_path}"
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
@@ -10,7 +10,6 @@ module VagrantHiera
10
10
  def call(env)
11
11
  @env = env
12
12
  if @env[:vm].config.hiera.set?
13
- @env[:vm].config.hiera.validate(@env, nil)
14
13
  create_shared_folders
15
14
  end
16
15
  @app.call(env)
@@ -10,7 +10,6 @@ module VagrantHiera
10
10
  def call(env)
11
11
  @env = env
12
12
  if @env[:vm].config.hiera.set?
13
- @env[:vm].config.hiera.validate(@env, nil)
14
13
  install_puppet_hiera unless puppet_hiera_installed?
15
14
  create_shared_folders
16
15
  create_symlink_to_hiera_config
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module Hiera
3
- VERSION = "0.1.31"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  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.31
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-25 00:00:00.000000000 Z
12
+ date: 2012-06-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: vagrant