diff options
author | Lamont Granquist <lamont@chef.io> | 2020-01-27 14:24:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 14:24:38 -0800 |
commit | fa497f980cc0716ae323a0c348480b70ae6cb057 (patch) | |
tree | 3fa8cad2ef132f3452b5b6ad73d8f6d0018bf16c /lib/chef/knife | |
parent | f13d6f413443541afac0f6e57988c6e8d4cd8ef4 (diff) | |
parent | af179bb942996f81cba74067d97ee31de6368aec (diff) | |
download | chef-fa497f980cc0716ae323a0c348480b70ae6cb057.tar.gz |
Remove the deprecated knife cookbook site commands (#9288)
Remove the deprecated knife cookbook site commands
Diffstat (limited to 'lib/chef/knife')
-rw-r--r-- | lib/chef/knife/cookbook_site_download.rb | 40 | ||||
-rw-r--r-- | lib/chef/knife/cookbook_site_install.rb | 40 | ||||
-rw-r--r-- | lib/chef/knife/cookbook_site_list.rb | 40 | ||||
-rw-r--r-- | lib/chef/knife/cookbook_site_search.rb | 40 | ||||
-rw-r--r-- | lib/chef/knife/cookbook_site_share.rb | 41 | ||||
-rw-r--r-- | lib/chef/knife/cookbook_site_show.rb | 40 | ||||
-rw-r--r-- | lib/chef/knife/cookbook_site_unshare.rb | 41 |
7 files changed, 0 insertions, 282 deletions
diff --git a/lib/chef/knife/cookbook_site_download.rb b/lib/chef/knife/cookbook_site_download.rb deleted file mode 100644 index cbe4a92604..0000000000 --- a/lib/chef/knife/cookbook_site_download.rb +++ /dev/null @@ -1,40 +0,0 @@ -# -# Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2009-2019, Chef Software, Inc. -# License:: Apache License, Version 2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -require_relative "../knife" -require_relative "supermarket_download" -require_relative "../dist" - -class Chef - class Knife - class CookbookSiteDownload < Knife::SupermarketDownload - - # Handle the subclassing (knife doesn't do this :() - dependency_loaders.concat(superclass.dependency_loaders) - - banner "knife cookbook site download COOKBOOK [VERSION] (options)" - category "deprecated" - - def run - Chef::Log.warn("knife cookbook site download has been deprecated in favor of knife supermarket download. In #{Chef::Dist::PRODUCT} 16 (April 2020) this will result in an error!") - super - end - - end - end -end diff --git a/lib/chef/knife/cookbook_site_install.rb b/lib/chef/knife/cookbook_site_install.rb deleted file mode 100644 index 785eb91e38..0000000000 --- a/lib/chef/knife/cookbook_site_install.rb +++ /dev/null @@ -1,40 +0,0 @@ -# -# Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2010-2019, Chef Software Inc. -# License:: Apache License, Version 2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -require_relative "../knife" -require_relative "supermarket_install" -require_relative "../dist" - -class Chef - class Knife - class CookbookSiteInstall < Knife::SupermarketInstall - - # Handle the subclassing (knife doesn't do this :() - dependency_loaders.concat(superclass.dependency_loaders) - - banner "knife cookbook site install COOKBOOK [VERSION] (options)" - category "deprecated" - - def run - Chef::Log.warn("knife cookbook site install has been deprecated in favor of knife supermarket install. In #{Chef::Dist::PRODUCT} 16 (April 2020) this will result in an error!") - super - end - - end - end -end diff --git a/lib/chef/knife/cookbook_site_list.rb b/lib/chef/knife/cookbook_site_list.rb deleted file mode 100644 index 10b3c6b589..0000000000 --- a/lib/chef/knife/cookbook_site_list.rb +++ /dev/null @@ -1,40 +0,0 @@ -# -# Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2009-2019, Chef Software Inc. -# License:: Apache License, Version 2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -require_relative "../knife" -require_relative "supermarket_list" -require_relative "../dist" - -class Chef - class Knife - class CookbookSiteList < Knife::SupermarketList - - # Handle the subclassing (knife doesn't do this :() - dependency_loaders.concat(superclass.dependency_loaders) - - banner "knife cookbook site list (options)" - category "deprecated" - - def run - Chef::Log.warn("knife cookbook site list has been deprecated in favor of knife supermarket list. In #{Chef::Dist::PRODUCT} 16 (April 2020) this will result in an error!") - super - end - - end - end -end diff --git a/lib/chef/knife/cookbook_site_search.rb b/lib/chef/knife/cookbook_site_search.rb deleted file mode 100644 index 6557528c8a..0000000000 --- a/lib/chef/knife/cookbook_site_search.rb +++ /dev/null @@ -1,40 +0,0 @@ -# -# Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2009-2019, Chef Software Inc. -# License:: Apache License, Version 2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -require_relative "../knife" -require_relative "supermarket_search" -require_relative "../dist" - -class Chef - class Knife - class CookbookSiteSearch < Knife::SupermarketSearch - - # Handle the subclassing (knife doesn't do this :() - dependency_loaders.concat(superclass.dependency_loaders) - - banner "knife cookbook site search QUERY (options)" - category "deprecated" - - def run - Chef::Log.warn("knife cookbook site search has been deprecated in favor of knife supermarket search. In #{Chef::Dist::PRODUCT} 16 (April 2020) this will result in an error!") - super - end - - end - end -end diff --git a/lib/chef/knife/cookbook_site_share.rb b/lib/chef/knife/cookbook_site_share.rb deleted file mode 100644 index 9569d9ab53..0000000000 --- a/lib/chef/knife/cookbook_site_share.rb +++ /dev/null @@ -1,41 +0,0 @@ -# -# Author:: Nuo Yan (<nuo@chef.io>) -# Author:: Tim Hinderliter (<tim@chef.io>) -# Copyright:: Copyright 2010-2019, Chef Software Inc. -# License:: Apache License, Version 2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -require_relative "../knife" -require_relative "supermarket_share" -require_relative "../dist" - -class Chef - class Knife - class CookbookSiteShare < Knife::SupermarketShare - - # Handle the subclassing (knife doesn't do this :() - dependency_loaders.concat(superclass.dependency_loaders) - - banner "knife cookbook site share COOKBOOK [CATEGORY] (options)" - category "deprecated" - - def run - Chef::Log.warn("knife cookbook site share has been deprecated in favor of knife supermarket share. In #{Chef::Dist::PRODUCT} 16 (April 2020) this will result in an error!") - super - end - - end - end -end diff --git a/lib/chef/knife/cookbook_site_show.rb b/lib/chef/knife/cookbook_site_show.rb deleted file mode 100644 index 3fa390508f..0000000000 --- a/lib/chef/knife/cookbook_site_show.rb +++ /dev/null @@ -1,40 +0,0 @@ -# -# Author:: Adam Jacob (<adam@chef.io>) -# Copyright:: Copyright 2009-2019, Chef Software Inc. -# License:: Apache License, Version 2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -require_relative "../knife" -require_relative "supermarket_show" -require_relative "../dist" - -class Chef - class Knife - class CookbookSiteShow < Knife::SupermarketShow - - # Handle the subclassing (knife doesn't do this :() - dependency_loaders.concat(superclass.dependency_loaders) - - banner "knife cookbook site show COOKBOOK [VERSION] (options)" - category "deprecated" - - def run - Chef::Log.warn("knife cookbook site show has been deprecated in favor of knife supermarket show. In #{Chef::Dist::PRODUCT} 16 (April 2020) this will result in an error!") - super - end - - end - end -end diff --git a/lib/chef/knife/cookbook_site_unshare.rb b/lib/chef/knife/cookbook_site_unshare.rb deleted file mode 100644 index 53d32aa85b..0000000000 --- a/lib/chef/knife/cookbook_site_unshare.rb +++ /dev/null @@ -1,41 +0,0 @@ -# -# Author:: Stephen Delano (<stephen@chef.io>) -# Author:: Tim Hinderliter (<tim@chef.io>) -# Copyright:: Copyright 2010-2019, Chef Software Inc. -# License:: Apache License, Version 2.0 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -require_relative "../knife" -require_relative "supermarket_unshare" -require_relative "../dist" - -class Chef - class Knife - class CookbookSiteUnshare < Knife::SupermarketUnshare - - # Handle the subclassing (knife doesn't do this :() - dependency_loaders.concat(superclass.dependency_loaders) - - banner "knife cookbook site unshare COOKBOOK (options)" - category "deprecated" - - def run - Chef::Log.warn("knife cookbook site unshare has been deprecated in favor of knife supermarket unshare. In #{Chef::Dist::PRODUCT} 16 (April 2020) this will result in an error!") - super - end - - end - end -end |