vagrant/plugins/provisioners/puppet/provisioner/puppet.rb

274 lines
9.6 KiB
Ruby
Raw Normal View History

require "digest/md5"
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_module_paths = @config.expanded_module_paths(root_path)
# Setup the module paths
@module_paths = []
@expanded_module_paths.each_with_index do |path, _|
key = Digest::MD5.hexdigest(path.to_s)
@module_paths << [path, File.join(config.temp_dir, "modules-#{key}")]
2013-01-14 00:22:47 +00:00
end
folder_opts = {}
folder_opts[:type] = @config.synced_folder_type if @config.synced_folder_type
folder_opts[:owner] = "root" if !@config.synced_folder_type
folder_opts[:args] = @config.synced_folder_args if @config.synced_folder_args
folder_opts[:nfs__quiet] = true
2015-04-12 06:48:18 +00:00
if @config.environment_path.is_a?(Array)
# Share the environments directory with the guest
2015-04-12 06:48:18 +00:00
if @config.environment_path[0].to_sym == :host
root_config.vm.synced_folder(
2015-04-12 06:48:18 +00:00
File.expand_path(@config.environment_path[1], root_path),
environments_guest_path, folder_opts)
end
end
if @config.manifest_file
@manifest_file = File.join(manifests_guest_path, @config.manifest_file)
# Share the manifests directory with the guest
if @config.manifests_path[0].to_sym == :host
root_config.vm.synced_folder(
File.expand_path(@config.manifests_path[1], root_path),
manifests_guest_path, folder_opts)
end
end
2012-04-19 04:53:19 +00:00
2013-01-14 00:22:47 +00:00
# Share the module paths
@module_paths.each do |from, to|
root_config.vm.synced_folder(from, to, folder_opts)
2013-01-14 00:22:47 +00:00
end
2012-04-19 04:53:19 +00:00
end
def parse_environment_metadata
# Parse out the environment manifest path since puppet apply doesnt do that for us.
environment_conf = File.join(environments_guest_path, @config.environment, "environment.conf")
if @machine.communicate.test("test -e #{environment_conf}", sudo: true)
conf = @machine.communicate.sudo("cat #{environment_conf}") do | type, data|
if type == :stdout
data.each_line do |line|
if line =~ /^\s*manifest\s+=\s+([^\s]+)/
@manifest_file = $1
@manifest_file.gsub! '$basemodulepath:', "#{environments_guest_path}/#{@config.environment}/"
@logger.debug("Using manifest from environment.conf: #{@manifest_file}")
end
end
end
end
end
end
2013-01-14 00:22:47 +00:00
def provision
# If the machine has a wait for reboot functionality, then
# do that (primarily Windows)
if @machine.guest.capability?(:wait_for_reboot)
@machine.guest.capability(:wait_for_reboot)
end
# In environment mode we still need to specify a manifest file, if its not, use the one from env config if specified.
if !@manifest_file
@manifest_file = "#{environments_guest_path}/#{@config.environment}/manifests/site.pp"
parse_environment_metadata
end
2012-04-19 04:53:19 +00:00
# Check that the shared folders are properly shared
check = []
if @config.manifests_path.is_a?(Array) && @config.manifests_path[0] == :host
check << manifests_guest_path
end
2015-04-12 06:48:18 +00:00
if @config.environment_path.is_a?(Array) && @config.environment_path[0] == :host
check << environments_guest_path
end
2012-04-19 04:53:19 +00:00
@module_paths.each do |host_path, guest_path|
check << guest_path
end
# 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
verify_shared_folders(check)
# Verify Puppet is installed and run it
puppet_bin = "puppet"
verify_binary(puppet_bin)
# 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
run_puppet_apply
2012-04-19 04:53:19 +00:00
end
def manifests_guest_path
if config.manifests_path[0] == :host
# The path is on the host, so point to where it is shared
key = Digest::MD5.hexdigest(config.manifests_path[1])
File.join(config.temp_dir, "manifests-#{key}")
else
# The path is on the VM, so just point directly to it
config.manifests_path[1]
end
2012-04-19 04:53:19 +00:00
end
def environments_guest_path
2015-04-12 06:48:18 +00:00
if config.environment_path[0] == :host
# The path is on the host, so point to where it is shared
File.join(config.temp_dir, "environments")
else
# The path is on the VM, so just point directly to it
2015-04-12 06:48:18 +00:00
config.environment_path[1]
end
end
2012-04-19 04:53:19 +00:00
def verify_binary(binary)
2015-07-15 17:57:38 +00:00
# Determine the command to use to test whether Puppet is available.
# This is very platform dependent.
test_cmd = "sh -c 'command -v #{binary}'"
if windows?
2015-07-15 17:57:38 +00:00
test_cmd = "which #{binary}"
if @config.binary_path
test_cmd = "where \"#{@config.binary_path}:#{binary}\""
end
end
2015-07-15 17:57:38 +00:00
if !machine.communicate.test(test_cmd)
2015-04-12 19:29:50 +00:00
@config.binary_path = "/opt/puppetlabs/bin/"
@machine.communicate.sudo(
"test -x /opt/puppetlabs/bin/#{binary}",
error_class: PuppetError,
error_key: :not_detected,
binary: binary)
end
2012-04-19 04:53:19 +00:00
end
def run_puppet_apply
default_module_path = "/etc/puppet/modules"
if windows?
default_module_path = "/ProgramData/PuppetLabs/puppet/etc/modules"
end
2012-04-19 04:53:19 +00:00
options = [config.options].flatten
module_paths = @module_paths.map { |_, to| to }
if !@module_paths.empty?
# Append the default module path
module_paths << default_module_path
# Add the command line switch to add the module path
module_path_sep = windows? ? ";" : ":"
options << "--modulepath '#{module_paths.join(module_path_sep)}'"
end
if @hiera_config_path
options << "--hiera_config=#{@hiera_config_path}"
end
2015-06-01 03:39:54 +00:00
if !@machine.env.ui.color?
options << "--color=false"
end
options << "--detailed-exitcodes"
if config.environment_path
options << "--environmentpath #{environments_guest_path}/"
options << "--environment #{@config.environment}"
else
options << "--manifestdir #{manifests_guest_path}"
end
options << @manifest_file
2012-04-19 04:53:19 +00:00
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
# If we're on Windows, we need to use the PowerShell style
if windows?
facts.map! { |v| "`$env:#{v};" }
end
2012-04-19 04:53:19 +00:00
facter = "#{facts.join(" ")} "
end
2015-07-15 06:26:55 +00:00
puppet_bin = "puppet"
2015-07-15 17:57:38 +00:00
if @config.binary_path
2015-07-15 06:26:55 +00:00
puppet_bin = File.join(@config.binary_path, puppet_bin)
end
2015-07-15 17:57:38 +00:00
command = "#{facter} #{puppet_bin} apply #{options}"
if config.working_directory
if windows?
command = "cd #{config.working_directory}; if (`$?) \{ #{command} \}"
else
command = "cd #{config.working_directory} && #{command}"
end
end
2012-04-19 04:53:19 +00:00
if config.environment_path
@machine.ui.info(I18n.t(
"vagrant.provisioners.puppet.running_puppet_env",
environment: config.environment))
else
@machine.ui.info(I18n.t(
"vagrant.provisioners.puppet.running_puppet",
manifest: config.manifest_file))
end
2012-04-19 04:53:19 +00:00
opts = {
elevated: true,
error_class: Vagrant::Errors::VagrantError,
error_key: :ssh_bad_exit_status_muted,
good_exit: [0,2],
}
@machine.communicate.sudo(command, opts) do |type, data|
2014-04-19 06:48:05 +00:00
if !data.chomp.empty?
@machine.ui.info(data.chomp)
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}")
if !@machine.communicate.test("test -d #{folder}", sudo: true)
2012-04-19 04:53:19 +00:00
raise PuppetError, :missing_shared_folders
end
end
end
def windows?
@machine.config.vm.communicator == :winrm
end
2012-04-19 04:53:19 +00:00
end
end
end
end