2012-04-19 04:53:19 +00:00
|
|
|
require "log4r"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module Puppet
|
|
|
|
module Provisioner
|
|
|
|
class PuppetError < Vagrant::Errors::VagrantError
|
|
|
|
error_namespace("vagrant.provisioners.puppet")
|
|
|
|
end
|
|
|
|
|
2012-11-07 05:21:36 +00:00
|
|
|
class Puppet < Vagrant.plugin("2", :provisioner)
|
2013-01-14 00:22:47 +00:00
|
|
|
def initialize(machine, config)
|
2012-04-19 04:53:19 +00:00
|
|
|
super
|
|
|
|
|
|
|
|
@logger = Log4r::Logger.new("vagrant::provisioners::puppet")
|
|
|
|
end
|
|
|
|
|
2013-01-14 00:22:47 +00:00
|
|
|
def configure(root_config)
|
2012-04-19 04:53:19 +00:00
|
|
|
# Calculate the paths we're going to use based on the environment
|
2013-01-14 00:22:47 +00:00
|
|
|
root_path = @machine.env.root_path
|
|
|
|
@expanded_manifests_path = @config.expanded_manifests_path(root_path)
|
|
|
|
@expanded_module_paths = @config.expanded_module_paths(root_path)
|
2013-05-01 01:31:06 +00:00
|
|
|
@manifest_file = File.join(manifests_guest_path, @config.manifest_file)
|
2013-01-14 00:22:47 +00:00
|
|
|
|
|
|
|
# Setup the module paths
|
|
|
|
@module_paths = []
|
|
|
|
@expanded_module_paths.each_with_index do |path, i|
|
2013-05-01 01:27:33 +00:00
|
|
|
@module_paths << [path, File.join(config.temp_dir, "modules-#{i}")]
|
2013-01-14 00:22:47 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Share the manifests directory with the guest
|
2013-01-23 17:44:53 +00:00
|
|
|
root_config.vm.synced_folder(
|
2013-08-01 12:46:03 +00:00
|
|
|
@expanded_manifests_path, manifests_guest_path, { :owner => 'root' } )
|
2012-04-19 04:53:19 +00:00
|
|
|
|
2013-01-14 00:22:47 +00:00
|
|
|
# Share the module paths
|
|
|
|
count = 0
|
|
|
|
@module_paths.each do |from, to|
|
2013-08-01 12:46:03 +00:00
|
|
|
root_config.vm.synced_folder(from, to, { :owner => 'root' } )
|
2013-01-14 00:22:47 +00:00
|
|
|
count += 1
|
|
|
|
end
|
2012-04-19 04:53:19 +00:00
|
|
|
end
|
|
|
|
|
2013-01-14 00:22:47 +00:00
|
|
|
def provision
|
2012-04-19 04:53:19 +00:00
|
|
|
# Check that the shared folders are properly shared
|
|
|
|
check = [manifests_guest_path]
|
|
|
|
@module_paths.each do |host_path, guest_path|
|
|
|
|
check << guest_path
|
|
|
|
end
|
|
|
|
|
|
|
|
verify_shared_folders(check)
|
|
|
|
|
|
|
|
# Verify Puppet is installed and run it
|
|
|
|
verify_binary("puppet")
|
2013-05-02 01:44:18 +00:00
|
|
|
|
|
|
|
# Make sure the temporary directory is properly set up
|
|
|
|
@machine.communicate.tap do |comm|
|
|
|
|
comm.sudo("mkdir -p #{config.temp_dir}")
|
|
|
|
comm.sudo("chmod 0777 #{config.temp_dir}")
|
|
|
|
end
|
|
|
|
|
|
|
|
# Upload Hiera configuration if we have it
|
|
|
|
@hiera_config_path = nil
|
|
|
|
if config.hiera_config_path
|
|
|
|
local_hiera_path = File.expand_path(config.hiera_config_path, @machine.env.root_path)
|
|
|
|
@hiera_config_path = File.join(config.temp_dir, "hiera.yaml")
|
|
|
|
@machine.communicate.upload(local_hiera_path, @hiera_config_path)
|
|
|
|
end
|
|
|
|
|
2012-07-11 17:59:20 +00:00
|
|
|
run_puppet_apply
|
2012-04-19 04:53:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def manifests_guest_path
|
2013-05-01 01:27:33 +00:00
|
|
|
File.join(config.temp_dir, "manifests")
|
2012-04-19 04:53:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def verify_binary(binary)
|
2013-01-14 00:22:47 +00:00
|
|
|
@machine.communicate.sudo(
|
|
|
|
"which #{binary}",
|
|
|
|
:error_class => PuppetError,
|
|
|
|
:error_key => :not_detected,
|
|
|
|
:binary => binary)
|
2012-04-19 04:53:19 +00:00
|
|
|
end
|
|
|
|
|
2012-07-11 17:59:20 +00:00
|
|
|
def run_puppet_apply
|
2012-04-19 04:53:19 +00:00
|
|
|
options = [config.options].flatten
|
2012-06-07 18:37:15 +00:00
|
|
|
module_paths = @module_paths.map { |_, to| to }
|
2013-03-19 22:23:37 +00:00
|
|
|
if !@module_paths.empty?
|
|
|
|
# Prepend the default module path
|
|
|
|
module_paths.unshift("/etc/puppet/modules")
|
|
|
|
|
|
|
|
# Add the command line switch to add the module path
|
|
|
|
options << "--modulepath '#{module_paths.join(':')}'"
|
|
|
|
end
|
|
|
|
|
2013-05-02 01:44:18 +00:00
|
|
|
if @hiera_config_path
|
|
|
|
options << "--hiera_config=#{@hiera_config_path}"
|
|
|
|
end
|
|
|
|
|
2013-07-18 04:16:53 +00:00
|
|
|
if !@machine.env.ui.is_a?(Vagrant::UI::Colored)
|
2013-07-28 19:07:48 +00:00
|
|
|
options << "--color=false"
|
2013-07-18 04:16:53 +00:00
|
|
|
end
|
|
|
|
|
2013-09-01 05:24:30 +00:00
|
|
|
options << "--manifestdir #{manifests_guest_path}"
|
2013-05-02 01:44:18 +00:00
|
|
|
options << "--detailed-exitcodes"
|
2012-04-19 04:53:19 +00:00
|
|
|
options << @manifest_file
|
|
|
|
options = options.join(" ")
|
|
|
|
|
|
|
|
# Build up the custom facts if we have any
|
|
|
|
facter = ""
|
|
|
|
if !config.facter.empty?
|
|
|
|
facts = []
|
|
|
|
config.facter.each do |key, value|
|
|
|
|
facts << "FACTER_#{key}='#{value}'"
|
|
|
|
end
|
|
|
|
|
|
|
|
facter = "#{facts.join(" ")} "
|
|
|
|
end
|
|
|
|
|
2013-05-02 01:44:18 +00:00
|
|
|
command = "#{facter}puppet apply #{options} || [ $? -eq 2 ]"
|
2013-05-01 01:27:33 +00:00
|
|
|
if config.working_directory
|
|
|
|
command = "cd #{config.working_directory} && #{command}"
|
|
|
|
end
|
2012-04-19 04:53:19 +00:00
|
|
|
|
2013-01-14 00:22:47 +00:00
|
|
|
@machine.env.ui.info I18n.t("vagrant.provisioners.puppet.running_puppet",
|
2013-05-01 01:27:33 +00:00
|
|
|
:manifest => config.manifest_file)
|
2012-04-19 04:53:19 +00:00
|
|
|
|
2013-01-14 00:22:47 +00:00
|
|
|
@machine.communicate.sudo(command) do |type, data|
|
2013-07-20 03:38:25 +00:00
|
|
|
if !data.empty?
|
2013-07-21 20:38:56 +00:00
|
|
|
@machine.env.ui.info(data, :new_line => false, :prefix => false)
|
2013-07-20 03:38:25 +00:00
|
|
|
end
|
2012-04-19 04:53:19 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def verify_shared_folders(folders)
|
|
|
|
folders.each do |folder|
|
|
|
|
@logger.debug("Checking for shared folder: #{folder}")
|
2013-01-14 00:22:47 +00:00
|
|
|
if !@machine.communicate.test("test -d #{folder}")
|
2012-04-19 04:53:19 +00:00
|
|
|
raise PuppetError, :missing_shared_folders
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|