From 24b8e63aff5c7a74d4cbda9050cf917f38c42146 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Wed, 30 Nov 2016 19:57:40 -0800 Subject: [PATCH] Share the folder containing the build script --- vagrant/centos-7-x64/Vagrantfile | 3 +++ vagrant/debian-8-x64/Vagrantfile | 3 +++ vagrant/fedora-24-x64/Vagrantfile | 5 +++-- vagrant/ubuntu-1404-x64/Vagrantfile | 3 +++ vagrant/ubuntu-1604-x64/Vagrantfile | 3 +++ 5 files changed, 15 insertions(+), 2 deletions(-) diff --git a/vagrant/centos-7-x64/Vagrantfile b/vagrant/centos-7-x64/Vagrantfile index 84eb12d0..efb3c302 100644 --- a/vagrant/centos-7-x64/Vagrantfile +++ b/vagrant/centos-7-x64/Vagrantfile @@ -18,4 +18,7 @@ Vagrant.configure("2") do |config| # a place to put the build results. config.vm.synced_folder "../../dist", "/home/vagrant/dist" + # And share a folder with the build script + config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + end diff --git a/vagrant/debian-8-x64/Vagrantfile b/vagrant/debian-8-x64/Vagrantfile index b9314229..da65a50f 100644 --- a/vagrant/debian-8-x64/Vagrantfile +++ b/vagrant/debian-8-x64/Vagrantfile @@ -18,4 +18,7 @@ Vagrant.configure("2") do |config| # a place to put the build results. config.vm.synced_folder "../../dist", "/home/vagrant/dist" + # And share a folder with the build script + config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + end diff --git a/vagrant/fedora-24-x64/Vagrantfile b/vagrant/fedora-24-x64/Vagrantfile index 679c7e80..e58431df 100644 --- a/vagrant/fedora-24-x64/Vagrantfile +++ b/vagrant/fedora-24-x64/Vagrantfile @@ -18,6 +18,7 @@ Vagrant.configure("2") do |config| # a place to put the build results. config.vm.synced_folder "../../dist", "/home/vagrant/dist" -end + # And share a folder with the build script + config.vm.synced_folder "../scripts", "/home/vagrant/scripts" -# config.vbguest.auto_update = false +end diff --git a/vagrant/ubuntu-1404-x64/Vagrantfile b/vagrant/ubuntu-1404-x64/Vagrantfile index 6c776981..5775ae84 100644 --- a/vagrant/ubuntu-1404-x64/Vagrantfile +++ b/vagrant/ubuntu-1404-x64/Vagrantfile @@ -18,4 +18,7 @@ Vagrant.configure("2") do |config| # a place to put the build results. config.vm.synced_folder "../../dist", "/home/vagrant/dist" + # And share a folder with the build script + config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + end diff --git a/vagrant/ubuntu-1604-x64/Vagrantfile b/vagrant/ubuntu-1604-x64/Vagrantfile index 751e10d2..37ddde03 100644 --- a/vagrant/ubuntu-1604-x64/Vagrantfile +++ b/vagrant/ubuntu-1604-x64/Vagrantfile @@ -18,4 +18,7 @@ Vagrant.configure("2") do |config| # a place to put the build results. config.vm.synced_folder "../../dist", "/home/vagrant/dist" + # And share a folder with the build script + config.vm.synced_folder "../scripts", "/home/vagrant/scripts" + end