2013-04-08 20:28:54 +00:00
|
|
|
require "log4r"
|
2013-04-08 20:05:53 +00:00
|
|
|
require "vagrant"
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CFEngine
|
|
|
|
class Provisioner < Vagrant.plugin("2", :provisioner)
|
|
|
|
def provision
|
2013-04-08 20:28:54 +00:00
|
|
|
@logger = Log4r::Logger.new("vagrant::plugins::cfengine")
|
|
|
|
|
|
|
|
@logger.info("Checking for CFEngine installation...")
|
2013-04-08 20:05:53 +00:00
|
|
|
handle_cfengine_installation
|
2013-04-08 20:28:54 +00:00
|
|
|
|
2013-04-08 20:46:03 +00:00
|
|
|
handle_cfengine_bootstrap if @config.mode == :bootstrap
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
# This runs cf-agent with the given arguments.
|
|
|
|
def cfagent(args, options=nil)
|
|
|
|
options ||= {}
|
|
|
|
command = "/var/cfengine/bin/cf-agent #{args}"
|
|
|
|
|
|
|
|
@machine.communicate.sudo(command, error_check: options[:error_check]) do |type, data|
|
|
|
|
if [:stderr, :stdout].include?(type)
|
|
|
|
# Output the data with the proper color based on the stream.
|
|
|
|
color = type == :stdout ? :green : :red
|
|
|
|
|
|
|
|
# Note: Be sure to chomp the data to avoid the newlines that the
|
|
|
|
# Chef outputs.
|
|
|
|
@machine.ui.info(data.chomp, :color => color, :prefix => false)
|
2013-04-08 20:28:54 +00:00
|
|
|
end
|
|
|
|
end
|
2013-04-08 20:05:53 +00:00
|
|
|
end
|
|
|
|
|
2013-04-08 20:46:03 +00:00
|
|
|
# This handles checking if the CFEngine installation needs to
|
|
|
|
# be bootstrapped, and bootstraps if it does.
|
|
|
|
def handle_cfengine_bootstrap
|
|
|
|
@logger.info("Bootstrapping CFEngine...")
|
|
|
|
if !@machine.guest.capability(:cfengine_needs_bootstrap, @config)
|
|
|
|
@machine.ui.info(I18n.t("vagrant.cfengine_no_bootstrap"))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
# Needs bootstrap, let's determine the parameters
|
|
|
|
policy_server_address = @config.policy_server_address
|
|
|
|
|
|
|
|
@machine.ui.info(I18n.t("vagrant.cfengine_bootstrapping",
|
|
|
|
policy_server: policy_server_address))
|
|
|
|
result = cfagent("--bootstrap --policy-server #{policy_server_address}", error_check: false)
|
|
|
|
raise Vagrant::Errors::CFEngineBootstrapFailed if result != 0
|
|
|
|
end
|
2013-04-08 20:05:53 +00:00
|
|
|
|
|
|
|
# This handles verifying the CFEngine installation, installing it
|
|
|
|
# if it was requested, and so on. This method will raise exceptions
|
|
|
|
# if things are wrong.
|
|
|
|
def handle_cfengine_installation
|
|
|
|
if !@machine.guest.capability?(:cfengine_installed)
|
|
|
|
@machine.ui.warn(I18n.t("vagrant.cfengine_cant_detect"))
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
installed = @machine.guest.capability(:cfengine_installed)
|
|
|
|
if !installed || @config.install == :force
|
|
|
|
raise Vagrant::Errors::CFEngineNotInstalled if !@config.install
|
|
|
|
|
|
|
|
@machine.ui.info(I18n.t("vagrant.cfengine_installing"))
|
|
|
|
@machine.guest.capability(:cfengine_install, @config)
|
|
|
|
|
|
|
|
if !@machine.guest.capability(:cfengine_installed)
|
|
|
|
raise Vagrant::Errors::CFEngineInstallFailed
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|