Skip to content

Commit

Permalink
update vagrantfile
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jan 18, 2024
1 parent 9ce9914 commit 7435c1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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__"],
Expand All @@ -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

0 comments on commit 7435c1f

Please sign in to comment.