remove double sudo

This commit is contained in:
Gordon Franke 2016-01-05 15:23:22 +01:00
parent d1d493c323
commit 077f9142f7
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