vagrant-lifecycle 0.1.2 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5611fea343055e79d06bb2a9133d859fecdecd9a
4
- data.tar.gz: e7b510084e3d9a4b1fbf05f9f5317fed57265012
3
+ metadata.gz: 1adfe0fd188550f1ce0ae66be31da607e6f9eb70
4
+ data.tar.gz: '082e1254bdc78785e15fd46a43d401769d9884c8'
5
5
  SHA512:
6
- metadata.gz: 6a72769bc4e0a041db10cee8cd21dda552b09d1e4104c923cd2f971cef0274760aaa5e4066632c1404af206b17c5f806aa6404243b3762e2a5ef33923dcc1b95
7
- data.tar.gz: b93ff762ce27e57bb02140b5c737b00c8083712d5319ce176773161d5d8e5ddbf4c4ad58fccf95aec19444c5774d272d2af74f7f8874f03b2135fc666add63d7
6
+ metadata.gz: ec1d88ac133062baee4af4149098e3036ec6645f77654e6cb3ee8661ee7d91a3601a9e6342916406f4066c3a0cfd869e7acb9166e89884f5b3792c0f14a8c0cd
7
+ data.tar.gz: ae2802b31cdb3010cd78131a19ed8cc38786cb03f149da7c1d621e1f87500efb33357e1d70e78969d7e0539188a5b7f352460177f4184efa7d317e16768a8f84
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # vagrant-lifecycle Changelog
2
2
 
3
+ ## 0.1.3
4
+
5
+ Added support for Chef Zero and Chef Client provisioners.
6
+
3
7
  ## 0.1.2
4
8
 
5
9
  Added middleware environment `:lifecycle_event` key for usage with other plugins.
data/Gemfile.lock CHANGED
@@ -33,7 +33,7 @@ GIT
33
33
  PATH
34
34
  remote: .
35
35
  specs:
36
- vagrant-lifecycle (0.1.1)
36
+ vagrant-lifecycle (0.1.3)
37
37
 
38
38
  GEM
39
39
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Vagrant Lifecycle Plugin
2
2
 
3
- Vagrant Lifecycle is a Vagrant plugin that allows execution of custom provisioning events for the Chef provisioners.
3
+ Vagrant Lifecycle is a Vagrant plugin that allows execution of custom provisioning events for the Chef provisioners
4
+ (Chef Solo, Chef Zero and Chef Client).
4
5
 
5
6
  The primarily goal of this plugin is to ease the development and testing of Chef recipes intended for use on services
6
7
  like AWS OpsWorks.
@@ -17,9 +17,9 @@ module VagrantPlugins
17
17
  chef_provisioners = env[:machine].config.vm.provisioners.select do |provisioner|
18
18
  # Vagrant 1.7 changes provisioner.name to provisioner.type
19
19
  if provisioner.respond_to? :type
20
- provisioner.type.to_sym == :chef_solo
20
+ provisioner.type.to_sym == :chef_solo || provisioner.type.to_sym == :chef_client || provisioner.type.to_sym == :chef_zero
21
21
  else
22
- provisioner.name.to_sym == :chef_solo
22
+ provisioner.name.to_sym == :chef_solo || provisioner.name.to_sym == :chef_client || provisioner.name.to_sym == :chef_zero
23
23
  end
24
24
  end
25
25
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module Lifecycle
3
- VERSION = '0.1.2'
3
+ VERSION = '0.1.3'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-lifecycle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nikola Stojiljkovic