From 719eb6583a8f81472080c454c75146c486fe7cd9 Mon Sep 17 00:00:00 2001 From: nivl4 Date: Sat, 24 Oct 2015 09:51:54 +0800 Subject: [PATCH] Remove vagrant customization that enables symlinks in /vagrant shared folder, at that is the default behavior of vagrant since 1.1. (https://github.com/mitchellh/vagrant/issues/713#issuecomment-13201507) --- Vagrantfile.example | 1 - 1 file changed, 1 deletion(-) diff --git a/Vagrantfile.example b/Vagrantfile.example index 52ffdf1096..7f89bb417e 100644 --- a/Vagrantfile.example +++ b/Vagrantfile.example @@ -8,7 +8,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.provider "virtualbox" do |v| v.memory = 768 v.cpus = 1 - v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"] end config.vm.box = "thepeopleseason/habitrpg" config.ssh.forward_agent = true