Class: Berkshelf::Vagrant::Action::Upload

Inherits:
Object
  • Object
show all
Includes:
EnvHelpers
Defined in:
lib/berkshelf/vagrant/action/upload.rb

Overview

Author:

Instance Method Summary collapse

Methods included from EnvHelpers

#berkshelf_enabled?, #cache_file, #chef_client?, #chef_solo?, #provision_disabled?, #provisioners

Constructor Details

#initialize(app, env) ⇒ Upload

Returns a new instance of Upload.



8
9
10
# File 'lib/berkshelf/vagrant/action/upload.rb', line 8

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/berkshelf/vagrant/action/upload.rb', line 12

def call(env)
  if provision_disabled?(env)
    return @app.call(env)
  end

  unless berkshelf_enabled?(env)
    return @app.call(env)
  end

  if chef_client?(env)
    upload(env)
  end

  @app.call(env)
rescue Berkshelf::BerkshelfError => e
  raise Berkshelf::VagrantWrapperError.new(e)
end