From cd9c98d06c998dc7b2ee634a2dffb52cbd511a46 Mon Sep 17 00:00:00 2001 From: John-Paul Robinson <jpr@uab.edu> Date: Fri, 28 Sep 2018 10:21:26 -0500 Subject: [PATCH] Fix ood hostname in vagrant file This is needed so that the ansible playbook is correctly selected based on hostname. --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 67ad8d2..a7a6859 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -14,7 +14,7 @@ Vagrant.configure("2") do |config| config.vm.define "ood" do |ood| ood.vm.box = "ravi89/centos7.5" ood.vm.box_version = "1" - ood.vm.hostname = "ohpc" + ood.vm.hostname = "ood" ood.vm.network "private_network", ip: "10.1.1.254", virtualbox__intnet: "compute" #ohpc.vm.customize ["modifyvm", :id, "--name", "ohpc"] end -- GitLab