Vagrantfile: typo fix

This commit is contained in:
Przemyslaw Kaminski 2015-09-01 10:07:36 +02:00
parent fef88ff8e8
commit 38640ffc13
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -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/playbooks/#{filename} #{args.join ' '}"
end
solar_script = ansible_playbook_command("solar.yml")