vagrant/plugins/provisioners/chef/config/chef_client.rb

72 lines
2.2 KiB
Ruby
Raw Normal View History

require "vagrant/util/which"
require_relative "base_runner"
2013-01-14 00:41:32 +00:00
module VagrantPlugins
module Chef
module Config
class ChefClient < BaseRunner
# The URL endpoint to the Chef Server.
# @return [String]
2013-01-14 00:41:32 +00:00
attr_accessor :chef_server_url
# The path on disk to the Chef client key,
# @return [String]
2013-01-14 00:41:32 +00:00
attr_accessor :client_key_path
# Delete the client key when the VM is destroyed. Default is false.
# @return [true, false]
attr_accessor :delete_client
# Delete the node when the VM is destroyed. Default is false.
# @return [true, false]
attr_accessor :delete_node
# The path to the validation key on disk.
# @return [String]
2013-04-15 19:08:08 +00:00
attr_accessor :validation_key_path
# The name of the validation client.
# @return [String]
2013-04-15 19:08:08 +00:00
attr_accessor :validation_client_name
def initialize
super
@chef_server_url = UNSET_VALUE
@client_key_path = UNSET_VALUE
@delete_client = UNSET_VALUE
@delete_node = UNSET_VALUE
@validation_key_path = UNSET_VALUE
@validation_client_name = UNSET_VALUE
2013-04-15 19:08:08 +00:00
end
def finalize!
super
2013-01-14 00:41:32 +00:00
@chef_server_url = nil if @chef_server_url == UNSET_VALUE
2015-07-09 22:55:55 +00:00
@client_key_path = nil if @client_key_path == UNSET_VALUE
@delete_client = false if @delete_client == UNSET_VALUE
@delete_node = false if @delete_node == UNSET_VALUE
2013-04-15 19:08:08 +00:00
@validation_client_name = "chef-validator" if @validation_client_name == UNSET_VALUE
@validation_key_path = nil if @validation_key_path == UNSET_VALUE
2013-04-15 19:08:08 +00:00
end
2013-01-14 00:41:32 +00:00
def validate(machine)
errors = validate_base(machine)
if chef_server_url.to_s.strip.empty?
errors << I18n.t("vagrant.config.chef.server_url_empty")
end
if validation_key_path.to_s.strip.empty?
errors << I18n.t("vagrant.config.chef.validation_key_path")
end
2013-01-14 00:41:32 +00:00
{ "chef client provisioner" => errors }
2013-01-14 00:41:32 +00:00
end
end
end
end
end