2013-03-20 14:41:21 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module Ansible
|
|
|
|
class Provisioner < Vagrant.plugin("2", :provisioner)
|
|
|
|
def provision
|
|
|
|
ssh = @machine.ssh_info
|
2013-07-07 06:47:37 +00:00
|
|
|
inventory_file_path = self.setup_inventory_file
|
2013-03-20 14:41:21 +00:00
|
|
|
options = %W[--private-key=#{ssh[:private_key_path]} --user=#{ssh[:username]}]
|
2013-07-07 06:47:37 +00:00
|
|
|
options << "--inventory-file=#{inventory_file_path}"
|
2013-03-20 14:41:21 +00:00
|
|
|
options << "--ask-sudo-pass" if config.ask_sudo_pass
|
2013-04-04 20:48:58 +00:00
|
|
|
|
2013-08-09 18:51:36 +00:00
|
|
|
if config.extra_vars
|
|
|
|
extra_vars = config.extra_vars.map do |k,v|
|
|
|
|
v = v.gsub('"', '\\"')
|
|
|
|
if v.include?(' ')
|
|
|
|
v = v.gsub("'", "\\'")
|
|
|
|
v = "'#{v}'"
|
|
|
|
end
|
|
|
|
|
|
|
|
"#{k}=#{v}"
|
|
|
|
end
|
|
|
|
|
|
|
|
options << "--extra-vars=\"#{extra_vars.join(" ")}\""
|
|
|
|
end
|
|
|
|
|
2013-03-20 14:41:21 +00:00
|
|
|
if config.limit
|
|
|
|
if not config.limit.kind_of?(Array)
|
|
|
|
config.limit = [config.limit]
|
|
|
|
end
|
|
|
|
config.limit = config.limit.join(",")
|
|
|
|
options << "--limit=#{config.limit}"
|
|
|
|
end
|
2013-04-04 20:48:58 +00:00
|
|
|
|
2013-03-20 14:41:21 +00:00
|
|
|
options << "--sudo" if config.sudo
|
|
|
|
options << "--sudo-user=#{config.sudo_user}" if config.sudo_user
|
2013-07-24 21:45:58 +00:00
|
|
|
if config.verbose
|
2013-08-28 23:46:04 +00:00
|
|
|
options << (config.verbose.to_s == "extra" ? "-vvv" : "--verbose")
|
2013-07-24 21:45:58 +00:00
|
|
|
end
|
2013-04-04 20:48:58 +00:00
|
|
|
|
2013-04-04 07:07:59 +00:00
|
|
|
# Assemble the full ansible-playbook command
|
2013-03-20 14:41:21 +00:00
|
|
|
command = (%w(ansible-playbook) << options << config.playbook).flatten
|
2013-04-04 20:48:58 +00:00
|
|
|
|
2013-04-04 07:07:59 +00:00
|
|
|
# Write stdout and stderr data, since it's the regular Ansible output
|
2013-04-04 18:31:27 +00:00
|
|
|
command << {
|
|
|
|
:env => { "ANSIBLE_FORCE_COLOR" => "true" },
|
2013-08-29 18:55:58 +00:00
|
|
|
:notify => [:stdout, :stderr],
|
|
|
|
:workdir => @machine.env.root_path.to_s
|
2013-04-04 18:31:27 +00:00
|
|
|
}
|
2013-04-04 20:48:58 +00:00
|
|
|
|
2013-04-04 20:58:33 +00:00
|
|
|
begin
|
2013-07-30 12:25:15 +00:00
|
|
|
result = Vagrant::Util::Subprocess.execute(*command) do |type, data|
|
2013-04-04 20:58:33 +00:00
|
|
|
if type == :stdout || type == :stderr
|
2013-07-20 03:38:25 +00:00
|
|
|
@machine.env.ui.info(data, :new_line => false, :prefix => false)
|
2013-04-04 20:58:33 +00:00
|
|
|
end
|
2013-04-04 20:48:58 +00:00
|
|
|
end
|
2013-07-20 04:07:09 +00:00
|
|
|
|
2013-07-30 12:25:15 +00:00
|
|
|
raise Vagrant::Errors::AnsibleFailed if result.exit_code != 0
|
2013-04-04 20:58:33 +00:00
|
|
|
rescue Vagrant::Util::Subprocess::LaunchError
|
|
|
|
raise Vagrant::Errors::AnsiblePlaybookAppNotFound
|
2013-04-04 07:07:59 +00:00
|
|
|
end
|
2013-03-20 14:41:21 +00:00
|
|
|
end
|
2013-08-28 23:52:13 +00:00
|
|
|
|
|
|
|
def setup_inventory_file
|
2013-09-01 04:48:41 +00:00
|
|
|
return config.inventory_path if config.inventory_path
|
2013-08-28 23:52:13 +00:00
|
|
|
|
2013-07-07 06:47:37 +00:00
|
|
|
ssh = @machine.ssh_info
|
2013-08-28 23:54:44 +00:00
|
|
|
|
|
|
|
generated_inventory_file =
|
|
|
|
@machine.env.root_path.join("vagrant_ansible_inventory_#{machine.name}")
|
|
|
|
|
|
|
|
generated_inventory_file.open('w') do |file|
|
2013-07-07 06:47:37 +00:00
|
|
|
file.write("# Generated by Vagrant\n\n")
|
|
|
|
file.write("#{machine.name} ansible_ssh_host=#{ssh[:host]} ansible_ssh_port=#{ssh[:port]}\n")
|
|
|
|
end
|
2013-08-28 23:52:13 +00:00
|
|
|
|
2013-08-28 23:54:44 +00:00
|
|
|
return generated_inventory_file.to_s
|
2013-07-07 06:47:37 +00:00
|
|
|
end
|
2013-03-20 14:41:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|