From 74867e6dcac63322bf8f591e663bc5d3602000be Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Tue, 15 Dec 2015 09:41:45 +0200 Subject: [PATCH] Adjust the OpenBSD Vagrant box to work with Landrush, unfortunately I had to hardcode the IP address. --- Vagrantfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Vagrantfile b/Vagrantfile index 6e85136..437f001 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -17,6 +17,9 @@ Vagrant.configure(2) do |config| config.vm.define "openbsd" do |openbsd| openbsd.vm.hostname = "openbsd.Ansible.vagrant" + openbsd.vm.network "private_network", ip: "172.28.128.3" + openbsd.landrush.guest_redirect_dns = false + openbsd.landrush.host_ip_address = "172.28.128.3" openbsd.vm.box = "tmatilai/openbsd-5.7" #openbsd.vm.box = "twingly/openbsd-5.7-amd64" end -- GitLab