Sha256: 0fe8c48d6ca92a5d29bf4463e2cd82e2c6e9a08148153bb95afd0026e0b1ac0c

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

require_relative "base"

module VagrantPlugins
  module Chef
    module Config
      class ChefApply < Base
        # 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 missing?(recipe)
            errors << I18n.t("vagrant.provisioners.chef.recipe_empty")
          end

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

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

Version data entries

4 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-1cf2a8db4ccb/plugins/provisioners/chef/config/chef_apply.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-272fb27e0536/plugins/provisioners/chef/config/chef_apply.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-309e896975d1/plugins/provisioners/chef/config/chef_apply.rb
vagrant-cloudstack-1.1.0 vendor/bundle/bundler/gems/vagrant-b421af58e8b3/plugins/provisioners/chef/config/chef_apply.rb