summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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