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:
Seth Vargo 2016-05-30 20:47:13 -04:00
parent 4c7069d7c9
commit 9ca4a8d800
No known key found for this signature in database
GPG Key ID: 905A90C2949E8787
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ Vagrant.configure("2") do |config|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# sudo apt-get update
# sudo apt-get install -y apache2
# apt-get update
# apt-get install -y apache2
# SHELL
end