Merge pull request #6805 from gimler/double_sudo_fix

remove double sudo
This commit is contained in:
Seth Vargo 2016-02-03 10:10:35 -05:00
commit 792ee8fb2d
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ module VagrantPlugins
OMNITRUCK = "https://omnitruck.chef.io".freeze
def sh_command(project, version, channel, options = {})
command = "curl -sL #{OMNITRUCK}/install.sh | sudo bash"
command = "curl -sL #{OMNITRUCK}/install.sh | bash"
command << " -s -- -P \"#{project}\" -c \"#{channel}\""
if version != :latest