From 6dbc74d814c15606ebf4c3e1b9d8a1092c8106a5 Mon Sep 17 00:00:00 2001 From: Gilles Cornu Date: Fri, 20 Nov 2015 00:13:01 +0100 Subject: [PATCH] provisioners/ansible: fix code indentation --- plugins/provisioners/ansible/provisioner/host.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/provisioners/ansible/provisioner/host.rb b/plugins/provisioners/ansible/provisioner/host.rb index ccf72ca8e..23d59f7d2 100644 --- a/plugins/provisioners/ansible/provisioner/host.rb +++ b/plugins/provisioners/ansible/provisioner/host.rb @@ -88,9 +88,9 @@ module VagrantPlugins def execute_ansible_galaxy_from_host command_values = { - :role_file => get_galaxy_role_file(machine.env.root_path), - :roles_path => get_galaxy_roles_path(machine.env.root_path) - } + :role_file => get_galaxy_role_file(machine.env.root_path), + :roles_path => get_galaxy_roles_path(machine.env.root_path) + } command_template = config.galaxy_command.gsub(' ', VAGRANT_ARG_SEPARATOR) str_command = command_template % command_values