Sha256: f9778086b428c8ee6f7390dbd5592466f0ab7d2ce78b704fdd47066acb7df29f

Contents?: true

Size: 1.19 KB

Versions: 58

Compression:

Stored size: 1.19 KB

Contents

require "vagrant/util/presence"

require_relative "base"

module VagrantPlugins
  module Chef
    module Config
      class ChefApply < Base
        include Vagrant::Util::Presence

        # The raw recipe text (as a string) to execute via chef-apply.
        # @return [String]
        attr_accessor :recipe

        # The path (on the guest) where the uploaded apply recipe should be
        # written (/tmp/vagrant-chef-apply-#.rb).
        # @return [String]
        attr_accessor :upload_path

        def initialize
          super

          @recipe      = UNSET_VALUE
          @upload_path = UNSET_VALUE
        end

        def finalize!
          super

          @recipe = nil if @recipe == UNSET_VALUE
          @upload_path = "/tmp/vagrant-chef-apply" if @upload_path == UNSET_VALUE
        end

        def validate(machine)
          errors = validate_base(machine)

          if !present?(recipe)
            errors << I18n.t("vagrant.provisioners.chef.recipe_empty")
          end

          if !present?(upload_path)
            errors << I18n.t("vagrant.provisioners.chef.upload_path_empty")
          end

          { "chef apply provisioner" => errors }
        end
      end
    end
  end
end

Version data entries

58 entries across 54 versions & 6 rubygems

Version Path
vagrant-unbundled-2.3.6.0 plugins/provisioners/chef/config/chef_apply.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.3.3.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.3.2.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.19.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.18.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.16.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.14.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.10.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.9.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.8.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.7.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.6.2 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.6.1 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.6.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.5.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.4.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.3.0 plugins/provisioners/chef/config/chef_apply.rb
vagrant-unbundled-2.2.2.0 plugins/provisioners/chef/config/chef_apply.rb