From 9b31c59c8d97e9bc133593c2b12125c7e678ce75 Mon Sep 17 00:00:00 2001 From: Olivier Bilodeau Date: Fri, 23 Aug 2019 11:37:28 -0400 Subject: [PATCH 1/2] Using VirtualBox's linked clones by default It saves disk space when the base machine is re-used across multiple spins. --- malboxes/vagrantfiles/box_win.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/malboxes/vagrantfiles/box_win.rb b/malboxes/vagrantfiles/box_win.rb index 32f4bbe..797d975 100644 --- a/malboxes/vagrantfiles/box_win.rb +++ b/malboxes/vagrantfiles/box_win.rb @@ -11,5 +11,6 @@ vb.gui = true vb.customize ["modifyvm", :id, "--vram", "128"] vb.customize ["modifyvm", :id, "--draganddrop", "hosttoguest"] + vb.linked_clone = true end end From 833d688731672fbda03a77bc33ed20569a2058b0 Mon Sep 17 00:00:00 2001 From: Olivier Bilodeau Date: Mon, 26 Aug 2019 14:44:00 -0400 Subject: [PATCH 2/2] Updated CHANGELOG --- CHANGELOG.adoc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 7b27515..4f3621c 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -8,6 +8,10 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/master[ == +Enhancements:: +* Using VirtualBox's linked clones by default now. + Creating a new spin of an existing template is now instant. ({uri-issue}126[#126]) + Bug fixes:: * Removed APM from default chocolatey packages ({uri-issue}119[#119]) * Disabled malware protection, cloud and automatic sample submission on Windows 10 ({uri-issue}120[#120])