diff options
author | Daniel Axtens <dja@axtens.net> | 2018-02-24 12:22:54 +1100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2018-02-27 11:25:29 +0000 |
commit | 2c92985a2ea96be524e1b3a98fc0fd708eb2ee31 (patch) | |
tree | 8fbe6f534d5503897ff237c6661d3b0523da9721 /Vagrantfile | |
parent | ebab733abad4648e8d1c3c95c095bca8bc86b644 (diff) | |
download | patchwork-2c92985a2ea96be524e1b3a98fc0fd708eb2ee31.tar patchwork-2c92985a2ea96be524e1b3a98fc0fd708eb2ee31.tar.gz |
tools: drop vagrant
It served us well, but it's now outdated (Trusty, Python 3.4, etc)
There is no indication that anyone uses it or keeps it up to date.
Signed-off-by: Daniel Axtens <dja@axtens.net>
Acked-by: Stephen Finucane <stephen@that.guru>
Reviewed-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index 2ddbca0..0000000 --- a/Vagrantfile +++ /dev/null @@ -1,26 +0,0 @@ -# -*- mode: ruby -*- -# vi: set ft=ruby : - -Vagrant.configure(2) do |config| - # For a complete reference of available confguration options, please see the - # online documentation at https://docs.vagrantup.com. - - config.vm.box = "ubuntu/trusty32" - - config.vm.network "forwarded_port", guest: 8000, host: 8000 - # Enable this if you want host-only access to the machine using the given IP - # config.vm.network "private_network", ip: "192.168.33.10" - - # Provider-specific configuration so you can fine-tune various - # backing providers for Vagrant. These expose provider-specific options. - # - # config.vm.provider "virtualbox" do |vb| - # # Display the VirtualBox GUI when booting the machine - # vb.gui = true - # - # # Customize the amount of memory on the VM: - # vb.memory = "1024" - # end - - config.vm.provision :shell, :path => "tools/vagrant/install.sh" -end |