diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2020-07-22 17:24:48 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2020-07-22 17:24:48 -0700 |
commit | df3f9fa4f950827b028efb58b1403f8e4c6f3d08 (patch) | |
tree | 932e2f01d86c39f328ca9c5475e253efb4b0e06a /chef-config/lib | |
parent | d7deaae8fcf84c19c825e43c487819cde24ed549 (diff) | |
download | chef-df3f9fa4f950827b028efb58b1403f8e4c6f3d08.tar.gz |
Convert to default_paths APIlcg/default-paths
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'chef-config/lib')
-rw-r--r-- | chef-config/lib/chef-config/config.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chef-config/lib/chef-config/config.rb b/chef-config/lib/chef-config/config.rb index bbf686af18..6675bac142 100644 --- a/chef-config/lib/chef-config/config.rb +++ b/chef-config/lib/chef-config/config.rb @@ -313,9 +313,12 @@ module ChefConfig # Defaults to <chef_repo_path>/users. default(:user_path) { derive_path_from_chef_repo_path("users") }.writes_value { |path| expand_relative_paths(path) } - # Turn on "path sanity" by default. + # DEPRECATED default :enforce_path_sanity, false + # Enforce default paths by default for all APIs, not just the default internal shell_out + default :enforce_default_paths, false + # Formatted Chef Client output is a beta feature, disabled by default: default :formatter, "null" |