From 2aa54cec42a03e1a43d5fc180272eb272ad8a01c Mon Sep 17 00:00:00 2001 From: jhallam3 Date: Thu, 30 Jul 2020 15:42:33 +0100 Subject: [PATCH] Update Vagrantfile permissions on the files now is set to work with Mac --- Vagrantfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 6b58f0b..c400716 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -91,7 +91,12 @@ Vagrant.configure("2") do |config| vb.memory = "6144" # 6 GB # vb.memory = "4096" # 4 GB + enable add_swap.sh below !!! end - +#MAC FILE PERMISSIONS +config.vm.provision "shell", inline: <<-SHELL + chmod +x /vagrant/scripts/provision/*.sh + chmod +x /vagrant/distrib/install.sh + +SHELL # Provision scripts config.vm.provision "shell", path: "scripts/provision/add_disk.sh" # config.vm.provision "shell", path: "scripts/provision/add_swap.sh"