vagrant-puppet-install 2.2.0 → 2.3.0

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: 8aa24a0de4849ea0f0ce85e92a026eecd3688574
4
- data.tar.gz: 6d98237f75bcd7569273d79c8717c705145e233d
3
+ metadata.gz: ab0aabd67d98ad87eb8e7ce4405fa4272dcde43a
4
+ data.tar.gz: e0f2ff19923c1cd587f4b70f0af25c92a11259fd
5
5
  SHA512:
6
- metadata.gz: 131d3ec9c583fac42f071df9d99f04062e87fb4d8b8abd46362b1532cc402710d2f4ea60d0ff938b51ddb6000083e92fa2b4013aca4341bf4113e96536c77be7
7
- data.tar.gz: b24a33a14da0631602af95908d5d4ab7769e27096172e695ca874a99cf400e7b065f48f8b348cf3373935ceec86d84622aa7aac3359e4df172cabc2181a7d052
6
+ metadata.gz: e2995ec1fa084f36fb31c2a6a4922cf0f3c417926e5e9e89222120123ed038374957b20f844f1e1091312cdef328fe31c9d75ee95502f9d15c3e860790145e8c
7
+ data.tar.gz: 5a72cfa9d2d0a6d5afc4fc69afac7ab593a2425a3ef641c91666bed584bab724abf2c426998921271dc78dde564a18cca85cec16689f6433400915a58866b070
@@ -1,19 +1,3 @@
1
- #
2
- # Copyright (c) 2013, Seth Chisamore
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
- #
16
-
17
1
  require 'vagrant'
18
2
  require 'vagrant-puppet-install/plugin'
19
3
  require 'vagrant-puppet-install/config'
@@ -1,19 +1,3 @@
1
- #
2
- # Copyright (c) 2013, Seth Chisamore
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
- #
16
-
17
1
  require 'log4r'
18
2
  require 'shellwords'
19
3
 
@@ -1,19 +1,3 @@
1
- #
2
- # Copyright (c) 2013, Seth Chisamore
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
- #
16
-
17
1
  require 'rubygems/dependency'
18
2
  require 'rubygems/dependency_installer'
19
3
  require 'vagrant'
@@ -1,21 +1,5 @@
1
- #
2
- # Copyright (c) 2013, Seth Chisamore
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
- #
16
-
17
1
  module VagrantPlugins
18
2
  module PuppetInstall
19
- VERSION = "2.2.0"
3
+ VERSION = "2.3.0"
20
4
  end
21
- end
5
+ end
data/locales/en.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  en:
2
- vagrant-puppet-install:
2
+ vagrant-puppet_install:
3
3
  action:
4
4
  installed: "Puppet %{version} package is already installed."
5
5
  installing: "Installing Puppet %{version} package..."
@@ -7,7 +7,7 @@ require 'vagrant-puppet-install'
7
7
  Vagrant.configure("2") do |config|
8
8
 
9
9
  config.vm.define :ubuntu do |ubuntu|
10
- ubuntu.puppet_install.puppet_version = :latest
10
+ ubuntu.puppet_install.puppet_version = '3.6.1'
11
11
 
12
12
  ubuntu.vm.box = "precise64"
13
13
  ubuntu.vm.box_url = "http://files.vagrantup.com/precise64.box"
@@ -17,18 +17,22 @@ Vagrant.configure("2") do |config|
17
17
  puppet.manifest_file = "base.pp"
18
18
  end
19
19
 
20
+ ubuntu.vm.provision "shell", inline: "puppet --version"
21
+
20
22
  end
21
23
 
22
24
  config.vm.define :centos do |centos|
23
- centos.puppet_install.puppet_version = :latest
25
+ centos.puppet_install.puppet_version = :latest
24
26
  centos.vm.box = 'centos-64-x64-vbox4210-nocm'
25
- centos.vm.box_url = 'http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box'
26
-
27
+ centos.vm.box_url = 'http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box'
28
+
27
29
  config.vm.provision :puppet do |puppet|
28
30
  puppet.manifests_path = File.expand_path('../../../support/manifests', __FILE__)
29
31
  puppet.manifest_file = "base.pp"
30
32
  end
31
33
 
34
+ centos.vm.provision "shell", inline: "puppet --version"
35
+
32
36
  end
33
-
37
+
34
38
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-puppet-install
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seth Chisamore
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-06-30 00:00:00.000000000 Z
13
+ date: 2014-07-01 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: bundler