123 lines
4.1 KiB
Ruby
123 lines
4.1 KiB
Ruby
require "vagrant/util/counter"
|
|
|
|
module VagrantPlugins
|
|
module Puppet
|
|
module Config
|
|
class Puppet < Vagrant.plugin("2", :config)
|
|
extend Vagrant::Util::Counter
|
|
|
|
attr_accessor :facter
|
|
attr_accessor :hiera_config_path
|
|
attr_accessor :manifest_file
|
|
attr_accessor :manifests_path
|
|
attr_accessor :module_path
|
|
attr_accessor :options
|
|
attr_accessor :synced_folder_type
|
|
attr_accessor :temp_dir
|
|
attr_accessor :working_directory
|
|
|
|
def initialize
|
|
super
|
|
|
|
@hiera_config_path = UNSET_VALUE
|
|
@manifest_file = UNSET_VALUE
|
|
@manifests_path = UNSET_VALUE
|
|
@module_path = UNSET_VALUE
|
|
@options = []
|
|
@facter = {}
|
|
@synced_folder_type = UNSET_VALUE
|
|
@temp_dir = UNSET_VALUE
|
|
@working_directory = UNSET_VALUE
|
|
end
|
|
|
|
def nfs=(value)
|
|
puts "DEPRECATION: The 'nfs' setting for the Puppet provisioner is"
|
|
puts "deprecated. Please use the 'synced_folder_type' setting instead."
|
|
puts "The 'nfs' setting will be removed in the next version of Vagrant."
|
|
|
|
if value
|
|
@synced_folder_type = "nfs"
|
|
else
|
|
@synced_folder_type = nil
|
|
end
|
|
end
|
|
|
|
def finalize!
|
|
super
|
|
|
|
if @manifests_path == UNSET_VALUE
|
|
@manifests_path = [:host, "manifests"]
|
|
end
|
|
|
|
if @manifests_path && !@manifests_path.is_a?(Array)
|
|
@manifests_path = [:host, @manifests_path]
|
|
end
|
|
|
|
@manifests_path[0] = @manifests_path[0].to_sym
|
|
|
|
@hiera_config_path = nil if @hiera_config_path == UNSET_VALUE
|
|
@manifest_file = "default.pp" if @manifest_file == UNSET_VALUE
|
|
@module_path = nil if @module_path == UNSET_VALUE
|
|
@synced_folder_type = nil if @synced_folder_type == UNSET_VALUE
|
|
@temp_dir = nil if @temp_dir == UNSET_VALUE
|
|
@working_directory = nil if @working_directory == UNSET_VALUE
|
|
|
|
# Set a default temp dir that has an increasing counter so
|
|
# that multiple Puppet definitions won't overwrite each other
|
|
if !@temp_dir
|
|
counter = self.class.get_and_update_counter(:puppet_config)
|
|
@temp_dir = "/tmp/vagrant-puppet-#{counter}"
|
|
end
|
|
end
|
|
|
|
# Returns the module paths as an array of paths expanded relative to the
|
|
# root path.
|
|
def expanded_module_paths(root_path)
|
|
return [] if !module_path
|
|
|
|
# Get all the paths and expand them relative to the root path, returning
|
|
# the array of expanded paths
|
|
paths = module_path
|
|
paths = [paths] if !paths.is_a?(Array)
|
|
paths.map do |path|
|
|
Pathname.new(path).expand_path(root_path)
|
|
end
|
|
end
|
|
|
|
def validate(machine)
|
|
errors = _detected_errors
|
|
|
|
# Calculate the manifests and module paths based on env
|
|
this_expanded_module_paths = expanded_module_paths(machine.env.root_path)
|
|
|
|
# Manifests path/file validation
|
|
if manifests_path[0].to_sym == :host
|
|
expanded_path = Pathname.new(manifests_path[1]).
|
|
expand_path(machine.env.root_path)
|
|
if !expanded_path.directory?
|
|
errors << I18n.t("vagrant.provisioners.puppet.manifests_path_missing",
|
|
:path => expanded_path.to_s)
|
|
else
|
|
expanded_manifest_file = expanded_path.join(manifest_file)
|
|
if !expanded_manifest_file.file?
|
|
errors << I18n.t("vagrant.provisioners.puppet.manifest_missing",
|
|
:manifest => expanded_manifest_file.to_s)
|
|
end
|
|
end
|
|
end
|
|
|
|
# Module paths validation
|
|
this_expanded_module_paths.each do |path|
|
|
if !path.directory?
|
|
errors << I18n.t("vagrant.provisioners.puppet.module_path_missing",
|
|
:path => path)
|
|
end
|
|
end
|
|
|
|
{ "puppet provisioner" => errors }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|