From 77385545e5d5aa2b05822c34acc0d0b18119e2cc Mon Sep 17 00:00:00 2001 From: Rui Lopes Date: Fri, 4 Mar 2022 19:29:06 +0000 Subject: [PATCH] upgrade to windows 2022 --- README.md | 2 +- Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8d2b4d6..a6382e2 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ This will: Build and install the [Ubuntu 20.04 Base Box](https://github.com/rgl/ubuntu-vagrant). -Build and install the [Windows 2019 Base Box](https://github.com/rgl/windows-vagrant). +Build and install the [Windows 2022 Base Box](https://github.com/rgl/windows-vagrant). Add the following entry to your `/etc/hosts` file: diff --git a/Vagrantfile b/Vagrantfile index 3a7fd40..7454768 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -45,7 +45,7 @@ Vagrant.configure(2) do |config| end config.vm.define :windows do |config| - config.vm.box = 'windows-2019-amd64' + config.vm.box = 'windows-2022-amd64' config.vm.network 'private_network', ip: '192.168.56.4' config.vm.provider :libvirt do |lv, config| config.vm.synced_folder '.', '/vagrant', type: 'smb', smb_username: ENV['USER'], smb_password: ENV['VAGRANT_SMB_PASSWORD']