diff options
author | Tim Smith <tsmith@chef.io> | 2018-02-22 17:38:44 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-02-22 17:38:44 -0800 |
commit | b114fdea64f32f42ba78e9132017c9c871be378c (patch) | |
tree | 054c6d508d990f321efa4cade00d5ec6a8d0275b /lib/chef/resource/paludis_package.rb | |
parent | b3a3fbaab35da9e7927a0cb1ae5e379f28ecc000 (diff) | |
download | chef-b114fdea64f32f42ba78e9132017c9c871be378c.tar.gz |
Add more introduced and description fields to resourcesdescriptions_v2
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/paludis_package.rb')
-rw-r--r-- | lib/chef/resource/paludis_package.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/resource/paludis_package.rb b/lib/chef/resource/paludis_package.rb index 6bc598e4ee..df9c274298 100644 --- a/lib/chef/resource/paludis_package.rb +++ b/lib/chef/resource/paludis_package.rb @@ -21,13 +21,13 @@ require "chef/provider/package/paludis" class Chef class Resource - # Use the paludis_package resource to manage packages for the Paludis platform. - # - # @since 12.1 class PaludisPackage < Chef::Resource::Package resource_name :paludis_package provides :paludis_package, os: "linux" + description "Use the paludis_package resource to manage packages for the Paludis platform." + introduced "12.1" + allowed_actions :install, :remove, :upgrade property :timeout, default: 3600 |