2013-01-14 00:41:32 +00:00
|
|
|
require File.expand_path("../base", __FILE__)
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module Chef
|
|
|
|
module Config
|
|
|
|
class ChefSolo < Base
|
|
|
|
attr_accessor :cookbooks_path
|
|
|
|
attr_accessor :roles_path
|
|
|
|
attr_accessor :data_bags_path
|
|
|
|
attr_accessor :recipe_url
|
|
|
|
attr_accessor :nfs
|
|
|
|
attr_accessor :encrypted_data_bag_secret_key_path
|
|
|
|
attr_accessor :encrypted_data_bag_secret
|
2013-07-11 05:52:37 +00:00
|
|
|
attr_accessor :environments_path
|
|
|
|
attr_accessor :environment
|
2013-01-14 00:41:32 +00:00
|
|
|
|
|
|
|
def initialize
|
|
|
|
super
|
|
|
|
|
2013-02-06 06:00:03 +00:00
|
|
|
@cookbooks_path = UNSET_VALUE
|
2013-02-06 06:07:50 +00:00
|
|
|
@data_bags_path = UNSET_VALUE
|
2013-08-28 23:49:19 +00:00
|
|
|
@environments_path = UNSET_VALUE
|
|
|
|
@environment = UNSET_VALUE
|
2013-02-06 06:07:50 +00:00
|
|
|
@recipe_url = UNSET_VALUE
|
|
|
|
@roles_path = UNSET_VALUE
|
2013-07-04 15:32:57 +00:00
|
|
|
@nfs = UNSET_VALUE
|
2013-02-06 06:00:03 +00:00
|
|
|
@encrypted_data_bag_secret = UNSET_VALUE
|
2013-02-06 06:07:50 +00:00
|
|
|
@encrypted_data_bag_secret_key_path = UNSET_VALUE
|
2013-01-14 00:41:32 +00:00
|
|
|
end
|
|
|
|
|
2013-04-10 18:21:18 +00:00
|
|
|
#------------------------------------------------------------
|
|
|
|
# Internal methods
|
|
|
|
#------------------------------------------------------------
|
|
|
|
|
2013-02-06 06:00:03 +00:00
|
|
|
def finalize!
|
2013-04-15 19:08:08 +00:00
|
|
|
super
|
|
|
|
|
2013-03-21 05:20:19 +00:00
|
|
|
@recipe_url = nil if @recipe_url == UNSET_VALUE
|
2013-07-11 05:52:37 +00:00
|
|
|
@environment = nil if @environment == UNSET_VALUE
|
2013-03-21 05:20:19 +00:00
|
|
|
|
2013-02-06 06:00:03 +00:00
|
|
|
if @cookbooks_path == UNSET_VALUE
|
2013-03-21 05:20:19 +00:00
|
|
|
@cookbooks_path = []
|
|
|
|
@cookbooks_path << [:host, "cookbooks"] if !@recipe_url
|
|
|
|
@cookbooks_path << [:vm, "cookbooks"]
|
2013-02-06 06:00:03 +00:00
|
|
|
end
|
2013-01-14 00:41:32 +00:00
|
|
|
|
2013-07-11 05:52:37 +00:00
|
|
|
@data_bags_path = [] if @data_bags_path == UNSET_VALUE
|
|
|
|
@roles_path = [] if @roles_path == UNSET_VALUE
|
|
|
|
@environments_path = [] if @environments_path == UNSET_VALUE or @recipe_url == nil
|
2013-03-05 18:19:36 +00:00
|
|
|
|
2013-03-05 19:53:57 +00:00
|
|
|
# Make sure the path is an array.
|
2013-07-11 05:52:37 +00:00
|
|
|
@cookbooks_path = prepare_folders_config(@cookbooks_path)
|
|
|
|
@data_bags_path = prepare_folders_config(@data_bags_path)
|
|
|
|
@roles_path = prepare_folders_config(@roles_path)
|
|
|
|
@environments_path = prepare_folders_config(@environments_path)
|
2013-01-14 00:41:32 +00:00
|
|
|
|
2013-07-04 15:32:57 +00:00
|
|
|
@nfs = false if @nfs == UNSET_VALUE
|
2013-02-06 06:00:03 +00:00
|
|
|
@encrypted_data_bag_secret = "/tmp/encrypted_data_bag_secret" if \
|
|
|
|
@encrypted_data_bag_secret == UNSET_VALUE
|
2013-02-06 06:07:50 +00:00
|
|
|
@encrypted_data_bag_secret_key_path = nil if \
|
|
|
|
@encrypted_data_bag_secret_key_path == UNSET_VALUE
|
2013-01-14 00:41:32 +00:00
|
|
|
end
|
|
|
|
|
2013-01-18 21:12:02 +00:00
|
|
|
def validate(machine)
|
2013-04-03 23:18:37 +00:00
|
|
|
errors = _detected_errors
|
2013-07-11 02:31:52 +00:00
|
|
|
errors.concat(validate_base(machine))
|
2013-01-18 21:12:02 +00:00
|
|
|
errors << I18n.t("vagrant.config.chef.cookbooks_path_empty") if \
|
|
|
|
!cookbooks_path || [cookbooks_path].flatten.empty?
|
2013-07-11 05:52:37 +00:00
|
|
|
errors << I18n.t("vagrant.config.chef.environment_path_required") if \
|
|
|
|
environment and (!environments_path || [environments_path].flatten.empty?)
|
2013-01-18 21:12:02 +00:00
|
|
|
{ "chef solo provisioner" => errors }
|
2013-01-14 00:41:32 +00:00
|
|
|
end
|
2013-03-05 19:53:57 +00:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
# This takes any of the configurations that take a path or
|
|
|
|
# array of paths and turns it into the proper format.
|
|
|
|
#
|
|
|
|
# @return [Array]
|
|
|
|
def prepare_folders_config(config)
|
|
|
|
# Make sure the path is an array
|
|
|
|
config = [config] if !config.is_a?(Array) || config.first.is_a?(Symbol)
|
|
|
|
|
|
|
|
# Make sure all the paths are in the proper format
|
|
|
|
config.map do |path|
|
|
|
|
path = [:host, path] if !path.is_a?(Array)
|
|
|
|
path
|
|
|
|
end
|
|
|
|
end
|
2013-01-14 00:41:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|