diff options
author | Tim Smith <tsmith@chef.io> | 2018-09-06 15:14:24 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-09-06 15:38:31 -0700 |
commit | 990cca06ffee547aeda6a543e3cbf256f0b32bce (patch) | |
tree | 6d303ed79e59e8847d9cd241a4b2a011abafdb32 /lib/chef/resource/macos_userdefaults.rb | |
parent | 1f2bd56d781868cd259b71ce56e6b9bc992f0bea (diff) | |
download | chef-990cca06ffee547aeda6a543e3cbf256f0b32bce.tar.gz |
Add additional resource descriptions
Filling in more of the missing resource descriptions using the descriptions straight from the docs site.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/macos_userdefaults.rb')
-rw-r--r-- | lib/chef/resource/macos_userdefaults.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/chef/resource/macos_userdefaults.rb b/lib/chef/resource/macos_userdefaults.rb index 3cf44eb161..f2ad5a0213 100644 --- a/lib/chef/resource/macos_userdefaults.rb +++ b/lib/chef/resource/macos_userdefaults.rb @@ -25,9 +25,7 @@ class Chef provides(:mac_os_x_userdefaults) { true } provides(:macos_userdefaults) { true } - description "Use the macos_userdefaults resource to manage the macOS user defaults system. The properties"\ - " of this resource are passed to the defaults command, and the parameters follow the convention"\ - " of that command. See the defaults(1) man page for details on how the tool works." + description "Use the macos_userdefaults resource to manage the macOS user defaults system. The properties of this resource are passed to the defaults command, and the parameters follow the convention of that command. See the defaults(1) man page for details on how the tool works." introduced "14.0" property :domain, String, @@ -57,8 +55,8 @@ class Chef default: false, desired_state: false + # @todo this should get refactored away: https://github.com/chef/chef/issues/7622 property :is_set, [TrueClass, FalseClass], - description: "", default: false, desired_state: false |