Merge pull request #11075 from jlduran/freebsd-remove-apt-ism

FreeBSD: Remove APT-ism
This commit is contained in:
Brian Cain 2019-09-24 13:56:11 -07:00 committed by GitHub
commit 71bf5de44c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ module VagrantPlugins
module FreeBSD
module ChefInstall
def self.chef_install(machine, project, version, channel, omnibus_url, options = {})
machine.communicate.sudo("pkg install -y -qq curl bash")
machine.communicate.sudo("pkg install -qy curl bash")
command = Omnibus.sh_command(project, version, channel, omnibus_url, options)
machine.communicate.sudo(command)