Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
frapposelli committed Sep 17, 2014
2 parents 829a53d + a7ceb29 commit ded0449
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/vagrant-vcenter/action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ def self.action_boot
def self.action_reload
Vagrant::Action::Builder.new.tap do |b|
b.use ConfigValidate
b.use ConnectvCenter
b.use Call, IsCreated do |env, b2|
unless env[:result]
b2.use MessageNotCreated
Expand Down Expand Up @@ -115,6 +116,7 @@ def self.action_destroy
def self.action_provision
Vagrant::Action::Builder.new.tap do |b|
b.use ConfigValidate
b.use ConnectvCenter
b.use Call, IsCreated do |env, b2|
unless env[:result]
b2.use MessageNotCreated
Expand Down Expand Up @@ -152,6 +154,7 @@ def self.action_read_state
def self.action_ssh
Vagrant::Action::Builder.new.tap do |b|
b.use ConfigValidate
b.use ConnectvCenter
b.use Call, IsCreated do |env, b2|
unless env[:result]
b2.use MessageNotCreated
Expand All @@ -165,6 +168,7 @@ def self.action_ssh
def self.action_ssh_run
Vagrant::Action::Builder.new.tap do |b|
b.use ConfigValidate
b.use ConnectvCenter
b.use Call, IsCreated do |env, b2|
unless env[:result]
b2.use MessageNotCreated
Expand Down
1 change: 0 additions & 1 deletion vagrant-vcenter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Gem::Specification.new do |s|

s.add_runtime_dependency 'vagrant-rbvmomi', '~> 1.8.1'
s.add_runtime_dependency 'log4r', '~> 1.1.10'
s.add_runtime_dependency 'nokogiri', '1.5.5'
s.add_runtime_dependency 'pry'

s.add_development_dependency 'rake'
Expand Down

0 comments on commit ded0449

Please sign in to comment.