From 6c4b537c824a5b15e0ac1180f5ba7878ab315701 Mon Sep 17 00:00:00 2001 From: Jose Luis Duran Date: Tue, 17 Sep 2019 03:58:37 -0300 Subject: [PATCH] FreeBSD: Remove APT-ism No functional change intended. --- plugins/provisioners/chef/cap/freebsd/chef_install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/provisioners/chef/cap/freebsd/chef_install.rb b/plugins/provisioners/chef/cap/freebsd/chef_install.rb index 378a5ae39..3ea8e6e56 100644 --- a/plugins/provisioners/chef/cap/freebsd/chef_install.rb +++ b/plugins/provisioners/chef/cap/freebsd/chef_install.rb @@ -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)