From a37aa00450ce5f82fbac79bd52cd45f102448d4e Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Tue, 28 May 2019 10:11:01 -0700 Subject: Add skip_docs to chocolatey_feature's feature_state We don't want this to show up in docs Signed-off-by: Tim Smith --- lib/chef/resource/chocolatey_feature.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/chef/resource/chocolatey_feature.rb b/lib/chef/resource/chocolatey_feature.rb index 1c190905f3..1cd19afbdd 100644 --- a/lib/chef/resource/chocolatey_feature.rb +++ b/lib/chef/resource/chocolatey_feature.rb @@ -25,7 +25,7 @@ class Chef property :feature_name, String, name_property: true, description: "The name of the Chocolatey feature to enable or disable." - property :feature_state, [TrueClass, FalseClass], default: false + property :feature_state, [TrueClass, FalseClass], default: false, desired_state: false, skip_docs: true load_current_value do current_state = fetch_feature_element(feature_name) -- cgit v1.2.1