2012-04-19 04:53:19 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module Puppet
|
|
|
|
module Provisioner
|
|
|
|
class PuppetServerError < Vagrant::Errors::VagrantError
|
|
|
|
error_namespace("vagrant.provisioners.puppet_server")
|
|
|
|
end
|
|
|
|
|
2012-11-07 05:21:36 +00:00
|
|
|
class PuppetServer < Vagrant.plugin("2", :provisioner)
|
2013-01-14 00:22:47 +00:00
|
|
|
def provision
|
2012-07-11 17:59:20 +00:00
|
|
|
verify_binary("puppet")
|
|
|
|
run_puppet_agent
|
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 => PuppetServerError,
|
|
|
|
: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_agent
|
2012-04-19 04:53:19 +00:00
|
|
|
options = config.options
|
|
|
|
options = [options] if !options.is_a?(Array)
|
|
|
|
|
|
|
|
# Intelligently set the puppet node cert name based on certain
|
|
|
|
# external parameters.
|
|
|
|
cn = nil
|
|
|
|
if config.puppet_node
|
|
|
|
# If a node name is given, we use that directly for the certname
|
|
|
|
cn = config.puppet_node
|
2013-01-14 00:22:47 +00:00
|
|
|
elsif @machine.config.vm.host_name
|
2012-04-19 04:53:19 +00:00
|
|
|
# If a host name is given, we explicitly set the certname to
|
|
|
|
# nil so that the hostname becomes the cert name.
|
|
|
|
cn = nil
|
|
|
|
else
|
|
|
|
# Otherwise, we default to the name of the box.
|
2013-01-14 00:22:47 +00:00
|
|
|
cn = @machine.config.vm.box
|
2012-04-19 04:53:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Add the certname option if there is one
|
|
|
|
options += ["--certname", cn] if cn
|
|
|
|
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
|
|
|
|
|
2012-10-08 19:22:30 +00:00
|
|
|
command = "#{facter}puppet agent #{options} --server #{config.puppet_server} --detailed-exitcodes || [ $? -eq 2 ]"
|
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_server.running_puppetd")
|
|
|
|
@machine.communicate.sudo(command) do |type, data|
|
2012-10-30 11:10:26 +00:00
|
|
|
data.chomp!
|
2013-01-14 00:22:47 +00:00
|
|
|
@machine.env.ui.info(data, :prefix => false) if !data.empty?
|
2012-04-19 04:53:19 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|