Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Fix inconsistent indent of Vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Jan 9, 2015
1 parent 70fdf25 commit 693837d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Vagrantfile
Expand Up @@ -19,10 +19,10 @@
#=============================================================================

Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/"
config.vm.provision "ansible" do |ansible|
ansible.playbook = "provisioning/ansible/site.yml"
end
config.vm.box = "ubuntu/trusty64"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git/"
config.vm.provision "ansible" do |ansible|
ansible.playbook = "provisioning/ansible/site.yml"
end
end

0 comments on commit 693837d

Please sign in to comment.