vagrant; issue #113: normalize whitespaces

This commit is contained in:
Daniel Mizyrycki 2013-03-21 22:26:18 -07:00
parent 6295a02275
commit 45df6f7801
1 changed files with 10 additions and 10 deletions

20
Vagrantfile vendored
View File

@ -112,19 +112,19 @@ end
"#{Vagrant::VERSION}" >= "1.1.0" and Vagrant.configure("2") do |config| "#{Vagrant::VERSION}" >= "1.1.0" and Vagrant.configure("2") do |config|
config.vm.provider :aws do |aws| config.vm.provider :aws do |aws|
config.vm.box = "dummy" config.vm.box = "dummy"
config.vm.box_url = "https://github.com/mitchellh/vagrant-aws/raw/master/dummy.box" config.vm.box_url = "https://github.com/mitchellh/vagrant-aws/raw/master/dummy.box"
aws.access_key_id = ENV["AWS_ACCESS_KEY_ID"] aws.access_key_id = ENV["AWS_ACCESS_KEY_ID"]
aws.secret_access_key = ENV["AWS_SECRET_ACCESS_KEY"] aws.secret_access_key = ENV["AWS_SECRET_ACCESS_KEY"]
aws.keypair_name = ENV["AWS_KEYPAIR_NAME"] aws.keypair_name = ENV["AWS_KEYPAIR_NAME"]
aws.ssh_private_key_path = ENV["AWS_SSH_PRIVKEY"] aws.ssh_private_key_path = ENV["AWS_SSH_PRIVKEY"]
aws.region = "us-east-1" aws.region = "us-east-1"
aws.ami = "ami-1c1e8075" aws.ami = "ami-1c1e8075"
aws.ssh_username = "vagrant" aws.ssh_username = "vagrant"
aws.instance_type = "t1.micro" aws.instance_type = "t1.micro"
end end
config.vm.provider :virtualbox do |vb| config.vm.provider :virtualbox do |vb|
config.vm.box = "quantal64_3.5.0-25" config.vm.box = "quantal64_3.5.0-25"
config.vm.box_url = "http://get.docker.io/vbox/ubuntu/12.10/quantal64_3.5.0-25.box" config.vm.box_url = "http://get.docker.io/vbox/ubuntu/12.10/quantal64_3.5.0-25.box"
end end
end end