aboutsummaryrefslogtreecommitdiffstats
path: root/config/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'config/Vagrantfile')
-rw-r--r--config/Vagrantfile23
1 files changed, 0 insertions, 23 deletions
diff --git a/config/Vagrantfile b/config/Vagrantfile
deleted file mode 100644
index 4253215fc..000000000
--- a/config/Vagrantfile
+++ /dev/null
@@ -1,23 +0,0 @@
-# This Vagrantfile should be used with the --no-color option, e.g.
-# vagrant --no-color up
-# Then you should be able to visit the site at:
-# http://alaveteli.10.10.10.30.xip.io
-
-Vagrant::Config.run do |config|
- config.vm.box = "precise64"
- config.vm.box_url = "http://files.vagrantup.com/precise64.box"
- config.vm.network :hostonly, "10.10.10.30"
- # The bundle install fails unless you have quite a large amount of
- # memory; insist on 1.5GiB:
- config.vm.customize ["modifyvm", :id, "--memory", 1536]
- # Fetch and run the install script:
- config.vm.provision :shell, :inline => "wget -O install-site.sh https://raw.github.com/mysociety/commonlib/master/bin/install-site.sh"
- config.vm.provision :shell, :inline => "chmod a+rx install-site.sh"
- # This is only needed before the install-script branch is merged to
- # master:
- config.vm.provision :shell, :inline => "sed -i -e 's/BRANCH=master/BRANCH=install-script/' install-site.sh"
- config.vm.provision :shell, :inline => "./install-site.sh " \
- "alaveteli " \
- "alaveteli " \
- "alaveteli.10.10.10.30.xip.io"
-end