diff options
Diffstat (limited to 'lib/chef/resource/chocolatey_package.rb')
-rw-r--r-- | lib/chef/resource/chocolatey_package.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/resource/chocolatey_package.rb b/lib/chef/resource/chocolatey_package.rb index 58bcab8b39..c5a5d827a2 100644 --- a/lib/chef/resource/chocolatey_package.rb +++ b/lib/chef/resource/chocolatey_package.rb @@ -20,14 +20,14 @@ require "chef/resource/package" class Chef class Resource - # Use the chocolatey_package resource to manage packages using Chocolatey on the Microsoft Windows platform. - # - # @since 12.7 class ChocolateyPackage < Chef::Resource::Package - resource_name :chocolatey_package provides :chocolatey_package, os: "windows" + description "Use the chocolatey_package resource to manage packages using Chocolatey"\ + " on the Microsoft Windows platform." + introduced "12.7" + allowed_actions :install, :upgrade, :remove, :uninstall, :purge, :reconfig # windows can't take Array options yet |