summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-10-15 09:12:33 -0700
committerGitHub <noreply@github.com>2019-10-15 09:12:33 -0700
commit719cad75a424201cb1d06b40beb83a01e0c53557 (patch)
treeccec13eb0dd0c40a6f69ea11dbe5f3601ad55952
parente1201548cc0e42207a773b99133b1a0ce8d5424a (diff)
parent8126ec8ff3701a6261709ba0bd2b49cfc11ec76f (diff)
downloadchef-719cad75a424201cb1d06b40beb83a01e0c53557.tar.gz
Merge pull request #8899 from MsysTechnologiesllc/VSingh/add-missing-knife-plugins
knife: Improve messaging for installing official plugins into DK / Workstationn
-rw-r--r--lib/chef/knife.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/knife.rb b/lib/chef/knife.rb
index a17137de43..bc25d48f90 100644
--- a/lib/chef/knife.rb
+++ b/lib/chef/knife.rb
@@ -240,7 +240,7 @@ class Chef
dependency_loaders.each(&:call)
end
- OFFICIAL_PLUGINS = %w{ec2 rackspace windows openstack azure google linode push vcenter lpar}.freeze
+ OFFICIAL_PLUGINS = %w{lpar openstack push rackspace vcenter}.freeze
class << self
def list_commands(preferred_category = nil)
@@ -283,7 +283,7 @@ class Chef
elsif category_commands = guess_category(args)
list_commands(category_commands)
elsif OFFICIAL_PLUGINS.include?(args[0]) # command was an uninstalled official chef knife plugin
- ui.info("Use `#{Chef::Dist::EXEC} gem install knife-#{args[0]}` to install the plugin into ChefDK")
+ ui.info("Use `#{Chef::Dist::EXEC} gem install knife-#{args[0]}` to install the plugin into ChefDK / Chef Workstation")
else
list_commands
end