vagrant-ebcommon 0.4.8 → 0.4.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: aaa94f145b9983b9f5296a2c5b47ee9a70d0ef4d
4
- data.tar.gz: 45868b0a0c291c37a0ee9ffda04f5c4c745a6330
3
+ metadata.gz: 936e591e4987cc8fb05d341245e8cfd209c96c61
4
+ data.tar.gz: 2ff77b8808965e2079fc6a07bced7e47e8bb4b8d
5
5
  SHA512:
6
- metadata.gz: 44859b5cf7326750de45578dadb724c9a2247beb898fb20d3fcaf2fcf2e10a4a6dd9332e0547bbc3c78d161a9088dc1e9a2f031ad6fefc6958fd8232869f4398
7
- data.tar.gz: f66bf9d812a3c6b76628c897a7caade84bfdabdd327fd2c346a04f5a668202899e71be5be736be287e1f6d4a7fab23d2d16c0b32644b25df11b1529f637e6284
6
+ metadata.gz: 187af96b3b9f0ff098ff3e1ff8839d858aee9b5e6fd638cbc1bd2d841ee74e70c72fd5dc1de643f009f9aa559328f37b473b5769b186a354a2603b4c96bfce36
7
+ data.tar.gz: f2f0c8af5a2604dd1b7c5e0da04b02c1a79a0f1cc5cdca7245e44a1100faa59197cba062157aaf8922bf32221673c0a6ccf9f6012cfd1f59f646e1b4299b943d
data/Vagrantfile CHANGED
@@ -15,6 +15,10 @@ Vagrant.configure('2') do |config|
15
15
  'vagrant-ebcommon',
16
16
  ]
17
17
 
18
+ config.vm.provision 'shell' do |s|
19
+ s.inline = 'sudo /opt/vagrant_ruby/bin/gem install puppet --no-ri --no-rdoc --version=3.5.1'
20
+ end
21
+
18
22
  config.vm.provision 'puppet' do |puppet|
19
23
  puppet.manifests_path = 'manifests'
20
24
  puppet.manifest_file = 'init.pp'
@@ -13,7 +13,13 @@ module VagrantPlugins
13
13
  @ebcommon = env[:machine].config.ebcommon
14
14
  @puppet_fact_generator = @env[:machine].config.puppet_fact_generator
15
15
 
16
- provisioner = @env[:machine].config.vm.provisioners[0]
16
+ provisioner = nil
17
+ @env[:machine].config.vm.provisioners.each do |p|
18
+ if p.name == :puppet
19
+ provisioner = p
20
+ break
21
+ end
22
+ end
17
23
  @puppet_config = provisioner ? provisioner.config: nil
18
24
  @vagrant_git_commiter_details = @env[:machine].env.local_data_path.join(
19
25
  'git_commit_details'
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Ebcommon
3
- VERSION = "0.4.8"
3
+ VERSION = "0.4.9"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-ebcommon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.8
4
+ version: 0.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Hahn
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-30 00:00:00.000000000 Z
11
+ date: 2014-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler