Skip to content

Commit

Permalink
Don't run provisioning script as privileged user
Browse files Browse the repository at this point in the history
Recent versions of composer won't run post-install scripts as root.
  • Loading branch information
DRvanR committed May 3, 2017
1 parent fc84f1f commit 336dda0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Vagrant.configure("2") do |config|
}
end

apps_centos7.vm.provision :shell, run: "always", path: "scripts/prep-dev-env.sh"
apps_centos7.vm.provision :shell, privileged: false, run: "always", path: "scripts/prep-dev-env.sh"
end

end
Expand Down

0 comments on commit 336dda0

Please sign in to comment.