summaryrefslogtreecommitdiff
path: root/lib/chef/resource
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-10-29 15:07:23 -0700
committerTim Smith <tsmith@chef.io>2018-10-30 16:19:15 -0700
commit1b29e8f96e1979055bf7f23751ca80a446581f0a (patch)
tree51efcfeade51296676e11c1610c2f04e53dd6245 /lib/chef/resource
parent9a5b3ddd83784686c529d801795cde538ac040c5 (diff)
downloadchef-1b29e8f96e1979055bf7f23751ca80a446581f0a.tar.gz
Don't document state properties in systemd_unit
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource')
-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