From fef88ff8e848217d5da2235729df8daf0448828d Mon Sep 17 00:00:00 2001 From: Przemyslaw Kaminski Date: Tue, 1 Sep 2015 10:05:00 +0200 Subject: [PATCH] Vagrantfile: fix ansible_playbook_command ruby string formatting --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index c1f1bee5..c9ff6f90 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2" SLAVES_COUNT = 2 def ansible_playbook_command(filename, args=[]) - "ansible-playbook -v -i \"localhost,\" -c local /vagrant/bootstrap/palybooks/${filename} ${args.join ' '}" + "ansible-playbook -v -i \"localhost,\" -c local /vagrant/bootstrap/palybooks/#{filename} #{args.join ' '}" end solar_script = ansible_playbook_command("solar.yml")