Sha256: 6b2982dc92ad286526428fdfaa217aa2e1066885aad786d06dca693f9646b3a7

Contents?: true

Size: 1.43 KB

Versions: 8

Compression:

Stored size: 1.43 KB

Contents

module Berkshelf
  module Vagrant
    module Action
      # @author Jamie Winsor <jamie@vialstudios.com>
      # @author Andrew Garson <andrew.garson@gmail.com>
      class Install
        attr_reader :shelf
        attr_reader :berksfile

        def initialize(app, env)
          @app       = app
          @shelf     = Berkshelf::Vagrant.shelf_for(env)
          @berksfile = Berksfile.from_file(env[:vm].config.berkshelf.berksfile_path)
        end

        def call(env)
          if Berkshelf::Vagrant.chef_solo?(env[:vm].config)
            configure_cookbooks_path(env)
            install(env)
          end

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

        private

          def install(env)
            Berkshelf.formatter.msg "installing cookbooks..."
            opts = {
              path: self.shelf
            }.merge(env[:vm].config.berkshelf.to_hash).symbolize_keys!
            berksfile.install(opts)
          end

          def configure_cookbooks_path(env)
            Berkshelf::Vagrant.provisioners(:chef_solo, env[:vm].config).each do |provisioner|
              unless provisioner.config.cookbooks_path.is_a?(Array)
                provisioner.config.cookbooks_path = Array(provisioner.config.cookbooks_path)
              end

              provisioner.config.cookbooks_path.unshift(self.shelf)
            end
          end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
berkshelf-1.1.6 lib/berkshelf/vagrant/action/install.rb
berkshelf-1.1.5 lib/berkshelf/vagrant/action/install.rb
berkshelf-1.1.4 lib/berkshelf/vagrant/action/install.rb
berkshelf-1.1.3 lib/berkshelf/vagrant/action/install.rb
berkshelf-1.1.2 lib/berkshelf/vagrant/action/install.rb
berkshelf-1.1.1 lib/berkshelf/vagrant/action/install.rb
berkshelf-1.1.0 lib/berkshelf/vagrant/action/install.rb
berkshelf-1.1.0.rc1 lib/berkshelf/vagrant/action/install.rb