From 069001ad779cdf48b5d5f0ab2bd79b9339484726 Mon Sep 17 00:00:00 2001 From: Vivek Singh Date: Wed, 18 Sep 2019 10:04:06 +0530 Subject: Add missing knife plugins Signed-off-by: Vivek Singh --- lib/chef/knife.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/chef') diff --git a/lib/chef/knife.rb b/lib/chef/knife.rb index 28634d9e44..97f8f4761e 100644 --- a/lib/chef/knife.rb +++ b/lib/chef/knife.rb @@ -234,7 +234,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{acl azure ec2 google linode lpar opc openstack push rackspace tidy vcenter vsphere windows}.freeze class << self def list_commands(preferred_category = nil) -- cgit v1.2.1 From 69a812da28db6766890588976e170e254839bccf Mon Sep 17 00:00:00 2001 From: Vivek Singh Date: Sun, 22 Sep 2019 17:03:33 +0530 Subject: Remove plugins which already shipped in chefdk Signed-off-by: Vivek Singh --- lib/chef/knife.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/chef') diff --git a/lib/chef/knife.rb b/lib/chef/knife.rb index 97f8f4761e..726f94db9a 100644 --- a/lib/chef/knife.rb +++ b/lib/chef/knife.rb @@ -234,7 +234,7 @@ class Chef dependency_loaders.each(&:call) end - OFFICIAL_PLUGINS = %w{acl azure ec2 google linode lpar opc openstack push rackspace tidy vcenter vsphere windows}.freeze + OFFICIAL_PLUGINS = %w{linode lpar openstack push rackspace vcenter}.freeze class << self def list_commands(preferred_category = nil) -- cgit v1.2.1 From 8126ec8ff3701a6261709ba0bd2b49cfc11ec76f Mon Sep 17 00:00:00 2001 From: Vivek Singh Date: Thu, 26 Sep 2019 23:38:43 +0530 Subject: Change ChefDK to ChefDK / Chef Workstation Signed-off-by: Vivek Singh --- lib/chef/knife.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/chef') diff --git a/lib/chef/knife.rb b/lib/chef/knife.rb index 726f94db9a..4a851c1b9d 100644 --- a/lib/chef/knife.rb +++ b/lib/chef/knife.rb @@ -234,7 +234,7 @@ class Chef dependency_loaders.each(&:call) end - OFFICIAL_PLUGINS = %w{linode lpar openstack push rackspace vcenter}.freeze + OFFICIAL_PLUGINS = %w{lpar openstack push rackspace vcenter}.freeze class << self def list_commands(preferred_category = nil) @@ -273,7 +273,7 @@ class Chef if 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 -- cgit v1.2.1