Skip to content

Commit

Permalink
Change owner of shared folder to archivematica uid
Browse files Browse the repository at this point in the history
This fixes the problems when building npm modules
  • Loading branch information
scollazo committed Feb 15, 2018
1 parent 0df7f37 commit cf642be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion playbooks/archivematica-centos7/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

# Make the project root available to the guest VM
config.vm.synced_folder '.', '/vagrant'
config.vm.synced_folder '.', '/vagrant',mount_options: ["uid=333", "gid=333"]

# Ansible provisioning
config.vm.provision :ansible do |ansible|
Expand Down
2 changes: 1 addition & 1 deletion playbooks/archivematica-xenial/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

# Make the project root available to the guest VM
config.vm.synced_folder '.', '/vagrant'
config.vm.synced_folder '.', '/vagrant',mount_options: ["uid=333", "gid=333"]

# Ansible provisioning
config.vm.provision "shell", inline: "sudo apt-get install -y python"
Expand Down
2 changes: 1 addition & 1 deletion playbooks/archivematica/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
end

# Make the project root available to the guest VM
config.vm.synced_folder '.', '/vagrant'
config.vm.synced_folder '.', '/vagrant',mount_options: ["uid=333", "gid=333"]

# Ansible provisioning
config.vm.provision :ansible do |ansible|
Expand Down

0 comments on commit cf642be

Please sign in to comment.