Remove sudo from generated Vagrantfile
This is unneeded because, by default, provisioners run as a privileged user. Fixes GH-7295
This commit is contained in:
parent
4c7069d7c9
commit
9ca4a8d800
|
@ -74,7 +74,7 @@ Vagrant.configure("2") do |config|
|
||||||
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
|
||||||
# documentation for more information about their specific syntax and use.
|
# documentation for more information about their specific syntax and use.
|
||||||
# config.vm.provision "shell", inline: <<-SHELL
|
# config.vm.provision "shell", inline: <<-SHELL
|
||||||
# sudo apt-get update
|
# apt-get update
|
||||||
# sudo apt-get install -y apache2
|
# apt-get install -y apache2
|
||||||
# SHELL
|
# SHELL
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue