summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-10-29 15:07:23 -0700
committerTim Smith <tsmith@chef.io>2018-11-05 09:38:16 -0800
commita5c68ef88ced056a9d0006b56f10bd957304235f (patch)
treed97f7e1017ca50c443191396b4fd9a97b247d74a
parente0cd94da5fc055945d0829eeff8383312a076951 (diff)
downloadchef-a5c68ef88ced056a9d0006b56f10bd957304235f.tar.gz
Don't document state properties in systemd_unit
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/systemd_unit.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/chef/resource/systemd_unit.rb b/lib/chef/resource/systemd_unit.rb
index fe4d88ccd2..a7508660f7 100644
--- a/lib/chef/resource/systemd_unit.rb
+++ b/lib/chef/resource/systemd_unit.rb
@@ -38,10 +38,10 @@ class Chef
:reload_or_try_restart
# Internal provider-managed properties
- property :enabled, [TrueClass, FalseClass]
- property :active, [TrueClass, FalseClass]
- property :masked, [TrueClass, FalseClass]
- property :static, [TrueClass, FalseClass]
+ property :enabled, [TrueClass, FalseClass], skip_docs: true
+ property :active, [TrueClass, FalseClass], skip_docs: true
+ property :masked, [TrueClass, FalseClass], skip_docs: true
+ property :static, [TrueClass, FalseClass], skip_docs: true
# User-provided properties
property :user, String, desired_state: false