2013-04-18 12:41:34 +00:00
|
|
|
require 'json'
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module Salt
|
|
|
|
class Provisioner < Vagrant.plugin("2", :provisioner)
|
|
|
|
def provision
|
|
|
|
upload_configs
|
|
|
|
upload_keys
|
|
|
|
run_bootstrap_script
|
2013-10-03 19:28:35 +00:00
|
|
|
call_overstate
|
2013-04-18 12:41:34 +00:00
|
|
|
call_highstate
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return a list of accepted keys
|
2013-05-18 17:29:36 +00:00
|
|
|
def keys(group='minions')
|
|
|
|
out = @machine.communicate.sudo("salt-key --out json") do |type, output|
|
2013-04-18 12:41:34 +00:00
|
|
|
begin
|
|
|
|
if type == :stdout
|
|
|
|
out = JSON::load(output)
|
2013-05-18 17:29:36 +00:00
|
|
|
break out[group]
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return out
|
|
|
|
end
|
2013-06-19 22:51:44 +00:00
|
|
|
|
2013-04-18 12:41:34 +00:00
|
|
|
## Utilities
|
|
|
|
def expanded_path(rel_path)
|
|
|
|
Pathname.new(rel_path).expand_path(@machine.env.root_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
def binaries_found
|
|
|
|
## Determine States, ie: install vs configure
|
|
|
|
desired_binaries = []
|
|
|
|
if !@config.no_minion
|
2014-05-17 00:19:34 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
|
|
|
desired_binaries.push('C:\\salt\\salt-minion.exe')
|
|
|
|
desired_binaries.push('C:\\salt\\salt-call.exe')
|
|
|
|
else
|
|
|
|
desired_binaries.push('salt-minion')
|
|
|
|
desired_binaries.push('salt-call')
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if @config.install_master
|
2014-05-17 00:19:34 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
2014-05-19 12:00:46 +00:00
|
|
|
raise Vagrant::Errors::ProvisionerWinRMUnsupported,
|
|
|
|
name: "salt.install_master"
|
2014-05-17 00:19:34 +00:00
|
|
|
else
|
|
|
|
desired_binaries.push('salt-master')
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if @config.install_syndic
|
2014-05-17 00:19:34 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
2014-05-19 12:00:46 +00:00
|
|
|
raise Vagrant::Errors::ProvisionerWinRMUnsupported,
|
|
|
|
name: "salt.install_syndic"
|
2014-05-17 00:19:34 +00:00
|
|
|
else
|
|
|
|
desired_binaries.push('salt-syndic')
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
found = true
|
|
|
|
for binary in desired_binaries
|
|
|
|
@machine.env.ui.info "Checking if %s is installed" % binary
|
|
|
|
if !@machine.communicate.test("which %s" % binary)
|
|
|
|
@machine.env.ui.info "%s was not found." % binary
|
|
|
|
found = false
|
|
|
|
else
|
|
|
|
@machine.env.ui.info "%s found" % binary
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return found
|
|
|
|
end
|
|
|
|
|
|
|
|
def need_configure
|
2013-09-14 14:46:08 +00:00
|
|
|
@config.minion_config or @config.minion_key or @config.master_config or @config.master_key
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def need_install
|
|
|
|
if @config.always_install
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
return !binaries_found()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def temp_config_dir
|
2014-05-17 00:19:34 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
|
|
|
return @config.temp_config_dir || "C:\\tmp"
|
|
|
|
else
|
|
|
|
return @config.temp_config_dir || "/tmp"
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Generates option string for bootstrap script
|
|
|
|
def bootstrap_options(install, configure, config_dir)
|
|
|
|
options = ""
|
|
|
|
|
2014-03-13 03:04:57 +00:00
|
|
|
# Any extra options passed to bootstrap
|
2014-02-20 04:24:05 +00:00
|
|
|
if @config.bootstrap_options
|
|
|
|
options = "%s %s" % [options, @config.bootstrap_options]
|
|
|
|
end
|
|
|
|
|
2013-04-18 12:41:34 +00:00
|
|
|
if configure
|
2014-04-24 15:56:54 +00:00
|
|
|
options = "%s -F -c %s" % [options, config_dir]
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
|
2014-03-13 03:04:57 +00:00
|
|
|
if @config.seed_master && @config.install_master
|
2013-05-18 17:29:36 +00:00
|
|
|
seed_dir = "/tmp/minion-seed-keys"
|
|
|
|
@machine.communicate.sudo("mkdir -p -m777 #{seed_dir}")
|
|
|
|
@config.seed_master.each do |name, keyfile|
|
|
|
|
sourcepath = expanded_path(keyfile).to_s
|
2013-10-10 11:04:31 +00:00
|
|
|
dest = "#{seed_dir}/#{name}"
|
2013-06-19 22:51:44 +00:00
|
|
|
@machine.communicate.upload(sourcepath, dest)
|
2013-05-18 17:29:36 +00:00
|
|
|
end
|
2013-06-19 22:51:44 +00:00
|
|
|
options = "#{options} -k #{seed_dir}"
|
2013-05-18 17:29:36 +00:00
|
|
|
end
|
|
|
|
|
2014-03-13 03:04:57 +00:00
|
|
|
if configure && !install
|
2013-04-18 12:41:34 +00:00
|
|
|
options = "%s -C" % options
|
2014-04-27 16:36:01 +00:00
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
|
2014-04-27 16:29:13 +00:00
|
|
|
if @config.install_master
|
|
|
|
options = "%s -M" % options
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
|
2014-04-27 16:29:13 +00:00
|
|
|
if @config.install_syndic
|
|
|
|
options = "%s -S" % options
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
|
2014-04-27 16:29:13 +00:00
|
|
|
if @config.no_minion
|
|
|
|
options = "%s -N" % options
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
|
2014-04-27 16:29:13 +00:00
|
|
|
if @config.install_type
|
|
|
|
options = "%s %s" % [options, @config.install_type]
|
|
|
|
end
|
|
|
|
|
|
|
|
if @config.install_args
|
|
|
|
options = "%s %s" % [options, @config.install_args]
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
if @config.verbose
|
|
|
|
@machine.env.ui.info "Using Bootstrap Options: %s" % options
|
|
|
|
end
|
|
|
|
|
|
|
|
return options
|
|
|
|
end
|
|
|
|
|
|
|
|
## Actions
|
2013-05-18 17:29:36 +00:00
|
|
|
# Get pillar string to pass with the salt command
|
|
|
|
def get_pillar
|
|
|
|
" pillar='#{@config.pillar_data.to_json}'" if !@config.pillar_data.empty?
|
|
|
|
end
|
|
|
|
|
2014-05-01 18:07:07 +00:00
|
|
|
# Get colorization option string to pass with the salt command
|
|
|
|
def get_colorize
|
|
|
|
@config.colorize ? " --force-color" : " --no-color"
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get log output level option string to pass with the salt command
|
|
|
|
def get_loglevel
|
|
|
|
log_levels = ["all", "garbage", "trace", "debug", "info", "warning", "error", "quiet"]
|
|
|
|
if log_levels.include? @config.log_level
|
|
|
|
" --log-level=#{@config.log_level}"
|
|
|
|
else
|
|
|
|
" --log-level=debug"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-18 12:41:34 +00:00
|
|
|
# Copy master and minion configs to VM
|
|
|
|
def upload_configs
|
|
|
|
if @config.minion_config
|
|
|
|
@machine.env.ui.info "Copying salt minion config to vm."
|
|
|
|
@machine.communicate.upload(expanded_path(@config.minion_config).to_s, temp_config_dir + "/minion")
|
|
|
|
end
|
|
|
|
|
|
|
|
if @config.master_config
|
|
|
|
@machine.env.ui.info "Copying salt master config to vm."
|
|
|
|
@machine.communicate.upload(expanded_path(@config.master_config).to_s, temp_config_dir + "/master")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Copy master and minion keys to VM
|
|
|
|
def upload_keys
|
|
|
|
if @config.minion_key and @config.minion_pub
|
|
|
|
@machine.env.ui.info "Uploading minion keys."
|
|
|
|
@machine.communicate.upload(expanded_path(@config.minion_key).to_s, temp_config_dir + "/minion.pem")
|
2014-04-29 14:28:57 +00:00
|
|
|
@machine.communicate.sudo("chmod u+w #{temp_config_dir}/minion.pem")
|
2013-04-18 12:41:34 +00:00
|
|
|
@machine.communicate.upload(expanded_path(@config.minion_pub).to_s, temp_config_dir + "/minion.pub")
|
|
|
|
end
|
|
|
|
|
|
|
|
if @config.master_key and @config.master_pub
|
|
|
|
@machine.env.ui.info "Uploading master keys."
|
|
|
|
@machine.communicate.upload(expanded_path(@config.master_key).to_s, temp_config_dir + "/master.pem")
|
2014-04-29 14:28:57 +00:00
|
|
|
@machine.communicate.sudo("chmod u+w #{temp_config_dir}/master.pem")
|
2013-04-18 12:41:34 +00:00
|
|
|
@machine.communicate.upload(expanded_path(@config.master_pub).to_s, temp_config_dir + "/master.pub")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get bootstrap file location, bundled or custom
|
|
|
|
def get_bootstrap
|
|
|
|
if @config.bootstrap_script
|
|
|
|
bootstrap_abs_path = expanded_path(@config.bootstrap_script)
|
|
|
|
else
|
2014-05-17 00:19:34 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
|
|
|
bootstrap_abs_path = Pathname.new("../bootstrap-salt.ps1").expand_path(__FILE__)
|
|
|
|
else
|
|
|
|
bootstrap_abs_path = Pathname.new("../bootstrap-salt.sh").expand_path(__FILE__)
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
2013-08-30 00:40:59 +00:00
|
|
|
|
2013-04-18 12:41:34 +00:00
|
|
|
return bootstrap_abs_path
|
|
|
|
end
|
|
|
|
|
|
|
|
# Determine if we are configure and/or installing, then do either
|
|
|
|
def run_bootstrap_script
|
|
|
|
install = need_install()
|
|
|
|
configure = need_configure()
|
|
|
|
config_dir = temp_config_dir()
|
|
|
|
options = bootstrap_options(install, configure, config_dir)
|
|
|
|
|
|
|
|
if configure or install
|
|
|
|
if configure and !install
|
|
|
|
@machine.env.ui.info "Salt binaries found. Configuring only."
|
|
|
|
else
|
|
|
|
@machine.env.ui.info "Bootstrapping Salt... (this may take a while)"
|
|
|
|
end
|
|
|
|
|
2013-08-30 00:40:59 +00:00
|
|
|
bootstrap_path = get_bootstrap
|
2014-05-17 00:19:34 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
|
|
|
bootstrap_destination = File.join(config_dir, "bootstrap_salt.ps1")
|
|
|
|
else
|
|
|
|
bootstrap_destination = File.join(config_dir, "bootstrap_salt.sh")
|
|
|
|
end
|
|
|
|
|
2013-09-29 11:05:59 +00:00
|
|
|
@machine.communicate.sudo("rm -f %s" % bootstrap_destination)
|
2013-04-18 12:41:34 +00:00
|
|
|
@machine.communicate.upload(bootstrap_path.to_s, bootstrap_destination)
|
|
|
|
@machine.communicate.sudo("chmod +x %s" % bootstrap_destination)
|
2014-05-17 00:19:34 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
|
|
|
bootstrap = @machine.communicate.sudo("powershell.exe -executionpolicy bypass -file %s" % [bootstrap_destination]) do |type, data|
|
|
|
|
if data[0] == "\n"
|
|
|
|
# Remove any leading newline but not whitespace. If we wanted to
|
|
|
|
# remove newlines and whitespace we would have used data.lstrip
|
|
|
|
data = data[1..-1]
|
|
|
|
end
|
|
|
|
if @config.verbose
|
|
|
|
@machine.env.ui.info(data.rstrip)
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
2014-05-17 00:19:34 +00:00
|
|
|
else
|
|
|
|
bootstrap = @machine.communicate.sudo("%s %s" % [bootstrap_destination, options]) do |type, data|
|
|
|
|
if data[0] == "\n"
|
|
|
|
# Remove any leading newline but not whitespace. If we wanted to
|
|
|
|
# remove newlines and whitespace we would have used data.lstrip
|
|
|
|
data = data[1..-1]
|
|
|
|
end
|
|
|
|
if @config.verbose
|
|
|
|
@machine.env.ui.info(data.rstrip)
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if !bootstrap
|
|
|
|
raise Salt::Errors::SaltError, :bootstrap_failed
|
|
|
|
end
|
2014-05-17 00:19:34 +00:00
|
|
|
|
2013-04-18 12:41:34 +00:00
|
|
|
if configure and !install
|
|
|
|
@machine.env.ui.info "Salt successfully configured!"
|
|
|
|
elsif configure and install
|
|
|
|
@machine.env.ui.info "Salt successfully configured and installed!"
|
|
|
|
elsif !configure and install
|
|
|
|
@machine.env.ui.info "Salt successfully installed!"
|
|
|
|
end
|
|
|
|
else
|
|
|
|
@machine.env.ui.info "Salt did not need installing or configuring."
|
|
|
|
end
|
|
|
|
end
|
2014-05-17 00:19:34 +00:00
|
|
|
|
2013-10-03 19:28:35 +00:00
|
|
|
def call_overstate
|
|
|
|
if @config.run_overstate
|
2014-05-19 12:00:46 +00:00
|
|
|
if @config.install_master
|
|
|
|
@machine.env.ui.info "Calling state.overstate... (this may take a while)"
|
|
|
|
@machine.communicate.sudo("salt '*' saltutil.sync_all")
|
|
|
|
@machine.communicate.sudo("salt-run state.over") do |type, data|
|
|
|
|
if @config.verbose
|
|
|
|
@machine.env.ui.info(data)
|
2013-10-03 19:28:35 +00:00
|
|
|
end
|
|
|
|
end
|
2014-05-19 12:00:46 +00:00
|
|
|
else
|
|
|
|
@machine.env.ui.info "run_overstate does not make sense on a minion. Not running state.overstate."
|
|
|
|
end
|
2013-10-03 19:28:35 +00:00
|
|
|
else
|
|
|
|
@machine.env.ui.info "run_overstate set to false. Not running state.overstate."
|
|
|
|
end
|
|
|
|
end
|
2013-06-19 22:51:44 +00:00
|
|
|
|
2013-04-18 12:41:34 +00:00
|
|
|
def call_highstate
|
|
|
|
if @config.run_highstate
|
|
|
|
@machine.env.ui.info "Calling state.highstate... (this may take a while)"
|
|
|
|
if @config.install_master
|
2014-05-19 12:00:46 +00:00
|
|
|
@machine.communicate.sudo("salt '*' saltutil.sync_all")
|
|
|
|
@machine.communicate.sudo("salt '*' state.highstate --verbose#{get_loglevel}#{get_colorize}#{get_pillar}") do |type, data|
|
|
|
|
if @config.verbose
|
|
|
|
@machine.env.ui.info(data)
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
2014-05-19 12:10:58 +00:00
|
|
|
if @machine.config.vm.communicator == :winrm
|
2014-05-19 11:14:25 +00:00
|
|
|
opts = { elevated: true }
|
|
|
|
@machine.communicate.execute("C:\\salt\\salt-call.exe saltutil.sync_all", opts)
|
|
|
|
@machine.communicate.execute("C:\\salt\\salt-call.exe state.highstate #{get_loglevel}#{get_colorize}#{get_pillar}", opts) do |type, data|
|
2014-05-17 00:19:34 +00:00
|
|
|
if @config.verbose
|
|
|
|
@machine.env.ui.info(data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
@machine.communicate.sudo("salt-call saltutil.sync_all")
|
|
|
|
@machine.communicate.sudo("salt-call state.highstate #{get_loglevel}#{get_colorize}#{get_pillar}") do |type, data|
|
|
|
|
if @config.verbose
|
|
|
|
@machine.env.ui.info(data)
|
|
|
|
end
|
2013-04-18 12:41:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
else
|
|
|
|
@machine.env.ui.info "run_highstate set to false. Not running state.highstate."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|