From 7f0d5a65dba362f504d88716ee5772ff3c6f9397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=BCller?= Date: Thu, 18 Jan 2024 13:03:36 +0100 Subject: [PATCH] update vagrantfile --- Vagrantfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 26703a5..ef942b6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -44,7 +44,7 @@ Vagrant.configure("2") do |config| # the path on the guest to mount the folder. And the optional third # argument is a set of non-required options. # config.vm.synced_folder "../data", "/vagrant_data" - config.vm.synced_folder ".", "/vagrant", disabled: true + # config.vm.synced_folder ".", "/vagrant", disabled: true config.vm.synced_folder ".", "/testing", type: "rsync", rsync__args: ["-vzra", "--delete"], rsync__exclude: ["*.pyc", "__pycache__"], @@ -68,5 +68,5 @@ Vagrant.configure("2") do |config| # Prevent reinstallation of guest additinos on every vagrant up # (Uncomment the next line in your CI tests) - config.vbguest.auto_update = false + # config.vbguest.auto_update = false end