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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -1
- data/lib/vagrant-lifecycle/middleware.rb +2 -2
- data/lib/vagrant-lifecycle/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1adfe0fd188550f1ce0ae66be31da607e6f9eb70
|
4
|
+
data.tar.gz: '082e1254bdc78785e15fd46a43d401769d9884c8'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec1d88ac133062baee4af4149098e3036ec6645f77654e6cb3ee8661ee7d91a3601a9e6342916406f4066c3a0cfd869e7acb9166e89884f5b3792c0f14a8c0cd
|
7
|
+
data.tar.gz: ae2802b31cdb3010cd78131a19ed8cc38786cb03f149da7c1d621e1f87500efb33357e1d70e78969d7e0539188a5b7f352460177f4184efa7d317e16768a8f84
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
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
|
|