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 b5820e3 commit 604d585
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Vagrant.configure("2") do |config|

# Create a private network, which allows host-only access to the machine
# using a specific IP.
# config.vm.network "private_network", ip: "192.168.56.10"
# config.vm.network "private_network", ip: "192.168.33.10"

# Create a public network, which generally matched to bridged network.
# Bridged networks make the machine appear as another physical device on
Expand All @@ -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 @@ -57,14 +57,16 @@ Vagrant.configure("2") do |config|
v.cpus = 1
end


# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL

# 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 604d585

Please sign in to comment.