summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-03-17 10:22:42 -0700
committerGitHub <noreply@github.com>2021-03-17 10:22:42 -0700
commitd6219c9996eeac00f8630a22821856345eb7809f (patch)
tree02594fd4861a9d69601cd5fa36c60d2c7ff772b3
parentd23bb9c768f46b6bb83c6911a328b1c6ef11e8f5 (diff)
parentb1d6169a77b22c61bddb29655956ecac2162df09 (diff)
downloadchef-d6219c9996eeac00f8630a22821856345eb7809f.tar.gz
Merge pull request #11196 from chef/opt_in_compliance
Disable compliance phase by default
-rw-r--r--lib/chef/compliance/default_attributes.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/compliance/default_attributes.rb b/lib/chef/compliance/default_attributes.rb
index 6f508e8c26..c44adca34b 100644
--- a/lib/chef/compliance/default_attributes.rb
+++ b/lib/chef/compliance/default_attributes.rb
@@ -89,9 +89,9 @@ class Chef
# named `chef_node`.
"chef_node_attribute_enabled" => false,
- # Should the built-in compliance phase run. True and false force the behavior. Nil does magic based on if you have
- # profies defined but do not have the audit cookbook enabled.
- "compliance_phase" => nil
+ # Should the built-in compliance phase run. True and false force the behavior. Nil does magic based on if you have
+ # profiles defined but do not have the audit cookbook enabled.
+ "compliance_phase" => false
)
end
end