Vagrant: remove nonworking Digitalocean configuration

This commit is contained in:
Marc Tobias Metten
2015-06-28 23:54:48 +02:00
parent 23a53661e0
commit d7c3f04e04
2 changed files with 11 additions and 10 deletions

1
.gitignore vendored
View File

@@ -30,3 +30,4 @@ data/wiki_import.sql
data/wiki_specialphrases.sql data/wiki_specialphrases.sql
data/osmosischange.osc data/osmosischange.osc
.vagrant

20
Vagrantfile vendored
View File

@@ -34,16 +34,16 @@ Vagrant.configure("2") do |config|
end end
config.vm.provider :digital_ocean do |provider, override| # config.vm.provider :digital_ocean do |provider, override|
override.ssh.private_key_path = '~/.ssh/id_rsa' # override.ssh.private_key_path = '~/.ssh/id_rsa'
override.vm.box = 'digital_ocean' # override.vm.box = 'digital_ocean'
override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box" # override.vm.box_url = "https://github.com/smdahlen/vagrant-digitalocean/raw/master/box/digital_ocean.box"
provider.token = 'e74c5c15501bd2782e689b0805ad577f954bfd39ea1fde3f17ff62835f2fc6c1' # provider.token = ''
# provider.token = 'YOUR TOKEN' # # provider.token = 'YOUR TOKEN'
provider.image = 'ubuntu-14-04-x64' # provider.image = 'ubuntu-14-04-x64'
provider.region = 'nyc2' # provider.region = 'nyc2'
provider.size = '512mb' # provider.size = '512mb'
end # end
end end