From f0f54c2ef93f6c2023ad4df39445c17351cea88f Mon Sep 17 00:00:00 2001 From: sstyle Date: Wed, 20 Apr 2016 11:26:28 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B5=20=D0=B1=D1=8B=D0=BB=D0=B8=20?= =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=BF=D0=B8=D1=81=D0=B0=D0=BD=D1=8B=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=B0=20=D0=BD=D0=B0=20=D0=BF=D0=B0=D0=BF?= =?UTF-8?q?=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Автор забыл указать права при монтировании, что вызывало ошибку прав записи (по крайней мере на Mac OS X) --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 23de67f..e11aa9e 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -38,7 +38,7 @@ Vagrant.configure(2) do |config| # the path on the host to the actual folder. The second argument is # 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 ".", "/home/bitrix/www" + config.vm.synced_folder ".", "/home/bitrix/www", :mount_options => ["dmode=777", "fmode=666"] # Provider-specific configuration so you can fine-tune various # backing providers for Vagrant. These expose provider-specific options.