-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Berkshelf got broken after #229 #248
Comments
I tested it with following diff, it looks good to me: diff --git a/source/lib/vagrant-openstack-provider/action.rb b/source/lib/vagrant-openstack-provider/action.rb
index ce55cec..d2fb22d 100644
--- a/source/lib/vagrant-openstack-provider/action.rb
+++ b/source/lib/vagrant-openstack-provider/action.rb
@@ -33,6 +33,7 @@ module VagrantPlugins
if env[:machine_state_id] == :not_created
b2.use Message, I18n.t('vagrant_openstack.not_created')
else
+ b2.use Provision
b2.use ProvisionWrapper
b2.use SyncFolders
end
@@ -99,6 +100,7 @@ module VagrantPlugins
case env[:machine_state_id]
when :not_created
ssh_disabled = env[:machine].provider_config.ssh_disabled
+ b2.use Provision unless ssh_disabled
b2.use ProvisionWrapper unless ssh_disabled
b2.use SyncFolders
b2.use CreateStack |
This was referenced Sep 16, 2015
@artem-sidorenko Yes, your diagnostic is right 😥 |
@ggiamarchi Do you have probably any news on this? its somehow a dead lock situation:-(
|
ggiamarchi
added a commit
that referenced
this issue
Apr 30, 2016
ggiamarchi
added a commit
that referenced
this issue
Apr 30, 2016
@artem-sidorenko Release 0.7.2 fixes this bug among others. |
@ggiamarchi cool, many thx! |
Sharpie
pushed a commit
to Sharpie/vagrant-openstack-provider
that referenced
this issue
Jul 25, 2016
Sharpie
pushed a commit
to Sharpie/vagrant-openstack-provider
that referenced
this issue
Jul 31, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
berkshelf from chefdk and vagrant-berkshelf are often used to test the chef cookbooks.
After #229 vagrant-berkshelf and berkshelf don't work anymore:
before #229:
after #229:
The text was updated successfully, but these errors were encountered: