From c1e51b3e98ff8e1d3a65a969527405fb0c0b20bc Mon Sep 17 00:00:00 2001 From: Kazue Igarashi Date: Thu, 22 Jan 2015 11:49:07 +0900 Subject: [PATCH 1/5] change WP_CHEF_COOKBOOKS_PATH example. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit vccw を別ディレクトリにおいていた場合、サンプル通りでは cookbook path でエラーが出たため。 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 604e7e3..027b553 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -47,7 +47,7 @@ WP_THEME_UNIT_TEST = false # automatic import theme unit test data WP_ALWAYS_RESET = true # always reset database -WP_CHEF_COOKBOOKS_PATH = File.join(File.dirname(__FILE__), 'provision') # path to the cookbooks (e.g. ~/vccw) +WP_CHEF_COOKBOOKS_PATH = File.join(File.dirname(__FILE__), 'provision') # path to the cookbooks (e.g. File.join('~/vccw', 'provision')) if WP_LANG === 'ja' then WP_THEME_UNIT_TEST_DATA_URI = 'https://raw.githubusercontent.com/jawordpressorg/theme-test-data-ja/master/wordpress-theme-test-date-ja.xml' From 08ab992800025907f5a70617331017ac6903775e Mon Sep 17 00:00:00 2001 From: Takayuki Miyauchi Date: Thu, 22 Jan 2015 12:20:06 +0900 Subject: [PATCH 2/5] Update Vagrantfile --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 027b553..90b1bc7 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -47,7 +47,7 @@ WP_THEME_UNIT_TEST = false # automatic import theme unit test data WP_ALWAYS_RESET = true # always reset database -WP_CHEF_COOKBOOKS_PATH = File.join(File.dirname(__FILE__), 'provision') # path to the cookbooks (e.g. File.join('~/vccw', 'provision')) +WP_CHEF_COOKBOOKS_PATH = File.join(File.dirname(__FILE__), 'provision') if WP_LANG === 'ja' then WP_THEME_UNIT_TEST_DATA_URI = 'https://raw.githubusercontent.com/jawordpressorg/theme-test-data-ja/master/wordpress-theme-test-date-ja.xml' From a5fd7663d6ebe1ff93aaccd27f46ccda148f8e66 Mon Sep 17 00:00:00 2001 From: Kazuya Shoji Date: Fri, 23 Jan 2015 18:22:02 +0900 Subject: [PATCH 3/5] =?UTF-8?q?windows=E3=81=A7=E3=83=95=E3=82=A1=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E3=83=91=E3=83=BC=E3=83=9F=E3=83=83=E3=82=B7=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E3=81=8C=E3=81=8A=E3=81=8B=E3=81=97=E3=81=8F=E3=81=AA?= =?UTF-8?q?=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 90b1bc7..b3d565c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -65,7 +65,7 @@ Vagrant.configure(2) do |config| config.vm.hostname = WP_HOSTNAME config.vm.network :private_network, ip: WP_IP - config.vm.synced_folder "www/wordpress/", DOCUMENT_ROOT, :create => "true" + config.vm.synced_folder "www/wordpress/", DOCUMENT_ROOT, :create => "true", :mount_options => ['dmode=755', 'fmode=644'] if Vagrant.has_plugin?("vagrant-hostsupdater") config.hostsupdater.remove_on_suspend = true From a23cd2278940ce03990c4ece5a1c061af1d24657 Mon Sep 17 00:00:00 2001 From: Kazuya Shoji Date: Fri, 23 Jan 2015 20:10:21 +0900 Subject: [PATCH 4/5] =?UTF-8?q?/vagrant=E3=81=AE=E3=83=91=E3=83=BC?= =?UTF-8?q?=E3=83=9F=E3=83=83=E3=82=B7=E3=83=A7=E3=83=B3=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index b3d565c..7af8454 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -65,6 +65,7 @@ Vagrant.configure(2) do |config| config.vm.hostname = WP_HOSTNAME config.vm.network :private_network, ip: WP_IP + config.vm.synced_folder ".", "/vagrant", :mount_options => ['dmode=755', 'fmode=644'] config.vm.synced_folder "www/wordpress/", DOCUMENT_ROOT, :create => "true", :mount_options => ['dmode=755', 'fmode=644'] if Vagrant.has_plugin?("vagrant-hostsupdater") From 33e8c6cd4a6ed1255c49df643eb13b8b34d6f73b Mon Sep 17 00:00:00 2001 From: Kazuya Shoji Date: Fri, 23 Jan 2015 18:22:02 +0900 Subject: [PATCH 5/5] =?UTF-8?q?windows=E3=81=A7=E3=83=95=E3=82=A1=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E3=83=91=E3=83=BC=E3=83=9F=E3=83=83=E3=82=B7=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E3=81=8C=E3=81=8A=E3=81=8B=E3=81=97=E3=81=8F=E3=81=AA?= =?UTF-8?q?=E3=82=8B=E3=81=AE=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 90b1bc7..b3d565c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -65,7 +65,7 @@ Vagrant.configure(2) do |config| config.vm.hostname = WP_HOSTNAME config.vm.network :private_network, ip: WP_IP - config.vm.synced_folder "www/wordpress/", DOCUMENT_ROOT, :create => "true" + config.vm.synced_folder "www/wordpress/", DOCUMENT_ROOT, :create => "true", :mount_options => ['dmode=755', 'fmode=644'] if Vagrant.has_plugin?("vagrant-hostsupdater") config.hostsupdater.remove_on_suspend = true