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/windows_service.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/windows_service.rb')
-rw-r--r-- | lib/chef/resource/windows_service.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/resource/windows_service.rb b/lib/chef/resource/windows_service.rb index 4e14b18c20..8a76a716aa 100644 --- a/lib/chef/resource/windows_service.rb +++ b/lib/chef/resource/windows_service.rb @@ -21,9 +21,6 @@ require "chef/win32_service_constants" class Chef class Resource - # Use the windows_service resource to manage a service on the Microsoft Windows platform. - # - # @since 12.0 class WindowsService < Chef::Resource::Service include Chef::Win32ServiceConstants @@ -39,6 +36,9 @@ class Chef provides :windows_service, os: "windows" provides :service, os: "windows" + description "Use the windows_service resource to manage a service on the Microsoft Windows platform." + introduced "12.0" + allowed_actions :configure_startup, :create, :delete, :configure identity_attr :service_name |