From f55b721da2ae5dea8244a22a5186be65fa85e244 Mon Sep 17 00:00:00 2001 From: Chris Long Date: Sat, 6 Jul 2019 18:35:02 -0700 Subject: [PATCH] Remove debugging paths from Vagrantfile --- Vagrant/Vagrantfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Vagrant/Vagrantfile b/Vagrant/Vagrantfile index 57bf59b..bc563d8 100644 --- a/Vagrant/Vagrantfile +++ b/Vagrant/Vagrantfile @@ -26,7 +26,7 @@ Vagrant.configure("2") do |config| end config.vm.define "dc" do |cfg| - cfg.vm.box = "../Packer/windows_2016_vmware.box" + cfg.vm.box = "detectionlab/win2016" cfg.vm.hostname = "dc" cfg.vm.boot_timeout = 600 cfg.winrm.transport = :plaintext @@ -80,7 +80,7 @@ Vagrant.configure("2") do |config| end config.vm.define "wef" do |cfg| - cfg.vm.box = "../Packer/windows_2016_vmware.box" + cfg.vm.box = "detectionlab/win2016" cfg.vm.hostname = "wef" cfg.vm.boot_timeout = 600 cfg.vm.communicator = "winrm" @@ -131,7 +131,7 @@ Vagrant.configure("2") do |config| end config.vm.define "win10" do |cfg| - cfg.vm.box = "../Packer/windows_10_vmware.box" + cfg.vm.box = "detectionlab/win10" cfg.vm.hostname = "win10" cfg.vm.boot_timeout = 1200 cfg.vm.communicator = "winrm"