src.nth.io/

summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2020-02-09 12:08:03 -0600
committerLuke Hoersten <[email protected]>2020-02-09 12:08:03 -0600
commitc17f28aafd1f15a8c26835196956c1c209ec5ff3 (patch)
tree471a2637b3d3b7551845af91c86be54586c2d2e5 /Vagrantfile
parent11746a2c064018a642486b208b2fdcaeae8ea8e5 (diff)
Moved roles to top level dir.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile25
1 files changed, 0 insertions, 25 deletions
diff --git a/Vagrantfile b/Vagrantfile
deleted file mode 100644
index 25d5b54..0000000
--- a/Vagrantfile
+++ /dev/null
@@ -1,25 +0,0 @@
-# -*- mode: ruby -*-
-# vi: set ft=ruby :
-
-Vagrant.configure("2") do |config|
- config.vm.box = "ubuntu/bionic64"
-
- config.vm.network "forwarded_port", guest: 4000, host: 4000
- config.vm.network "forwarded_port", guest: 80, host: 8080
- # config.vm.synced_folder "../data", "/vagrant_data"
-
- # 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 "ansible" do |ansible|
- ansible.limit = "all,localhost"
- # ansible.verbose = "vvv"
- ansible.playbook = "main.yaml"
- ansible.compatibility_mode = "2.0"
- end
-end