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-04-04 20:48:58 +00:00
|
|
|
|
2013-05-06 20:28:20 +00:00
|
|
|
# Connect with Vagrant user (unless --user or --private-key are overidden by 'raw_arguments')
|
2013-03-20 14:41:21 +00:00
|
|
|
options = %W[--private-key=#{ssh[:private_key_path]} --user=#{ssh[:username]}]
|
2013-05-06 20:28:20 +00:00
|
|
|
|
|
|
|
# Joker! Not (yet) supported arguments can be passed this way.
|
|
|
|
options << "#{config.raw_arguments}" if config.raw_arguments
|
|
|
|
|
|
|
|
# Append Provisioner options (higher precedence):
|
2013-04-05 15:43:45 +00:00
|
|
|
options << "--extra-vars=" + config.extra_vars.map{|k,v| "#{k}=#{v}"}.join(' ') if config.extra_vars
|
2013-03-20 14:41:21 +00:00
|
|
|
options << "--inventory-file=#{config.inventory_file}" if config.inventory_file
|
|
|
|
options << "--ask-sudo-pass" if config.ask_sudo_pass
|
2013-05-06 19:17:45 +00:00
|
|
|
options << "--tags=#{as_list_argument(config.tags)}" if config.tags
|
|
|
|
options << "--limit=#{as_list_argument(config.limit)}" if config.limit
|
2013-03-20 14:41:21 +00:00
|
|
|
options << "--sudo" if config.sudo
|
|
|
|
options << "--sudo-user=#{config.sudo_user}" if config.sudo_user
|
|
|
|
options << "--verbose" if config.verbose
|
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" },
|
|
|
|
:notify => [:stdout, :stderr]
|
|
|
|
}
|
2013-04-04 20:48:58 +00:00
|
|
|
|
2013-04-04 20:58:33 +00:00
|
|
|
begin
|
|
|
|
Vagrant::Util::Subprocess.execute(*command) do |type, data|
|
|
|
|
if type == :stdout || type == :stderr
|
|
|
|
@machine.env.ui.info(data.chomp, :prefix => false)
|
|
|
|
end
|
2013-04-04 20:48:58 +00:00
|
|
|
end
|
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-05-06 19:17:45 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def as_list_argument(v)
|
|
|
|
v.kind_of?(Array) ? v.join(',') : v
|
|
|
|
end
|
2013-03-20 14:41:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|