summaryrefslogtreecommitdiff
path: root/chef-config
diff options
context:
space:
mode:
Diffstat (limited to 'chef-config')
-rw-r--r--chef-config/lib/chef-config/config.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/chef-config/lib/chef-config/config.rb b/chef-config/lib/chef-config/config.rb
index d8cc4bff37..1ad6266d14 100644
--- a/chef-config/lib/chef-config/config.rb
+++ b/chef-config/lib/chef-config/config.rb
@@ -185,6 +185,14 @@ module ChefConfig
# Defaults to <chef_repo_path>/nodes.
default(:node_path) { derive_path_from_chef_repo_path('nodes') }
+ # Location of policies on disk. String or array of strings.
+ # Defaults to <chef_repo_path>/policies.
+ default(:policy_path) { derive_path_from_chef_repo_path('policies') }
+
+ # Location of policy_groups on disk. String or array of strings.
+ # Defaults to <chef_repo_path>/policy_groups.
+ default(:policy_group_path) { derive_path_from_chef_repo_path('policy_groups') }
+
# Location of roles on disk. String or array of strings.
# Defaults to <chef_repo_path>/roles.
default(:role_path) { derive_path_from_chef_repo_path('roles') }