diff --git a/Vagrantfile b/Vagrantfile index 48d4ca0..ef942b6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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 @@ -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__"], @@ -57,6 +57,7 @@ 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. @@ -64,7 +65,8 @@ Vagrant.configure("2") do |config| # 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