From ceb3d30088ad0e321ecc4e0efb830376eb411495 Mon Sep 17 00:00:00 2001 From: Thomas Goirand Date: Sun, 11 Apr 2021 23:41:35 +0200 Subject: [PATCH] Allow to configure policy_dirs This patch makes it possible to override the current service default, which is /etc//policy.d . Change-Id: I738e0154fe1b84d2deb0a55f3b8672e5733762f6 --- manifests/policy.pp | 8 +++++++- releasenotes/notes/policy-dirs-2ed6895c4391e395.yaml | 5 +++++ spec/classes/mistral_policy_spec.rb | 2 ++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/policy-dirs-2ed6895c4391e395.yaml diff --git a/manifests/policy.pp b/manifests/policy.pp index dddbcce..4c336bd 100644 --- a/manifests/policy.pp +++ b/manifests/policy.pp @@ -32,11 +32,16 @@ # (Optional) Path to the mistral policy.yaml file # Defaults to /etc/mistral/policy.yaml # +# [*policy_dirs*] +# (Optional) Path to the mistral policy folder +# Defaults to $::os_service_default +# class mistral::policy ( $enforce_scope = $::os_service_default, $enforce_new_defaults = $::os_service_default, $policies = {}, $policy_path = '/etc/mistral/policy.yaml', + $policy_dirs = $::os_service_default, ) { include mistral::deps @@ -56,7 +61,8 @@ class mistral::policy ( oslo::policy { 'mistral_config': enforce_scope => $enforce_scope, enforce_new_defaults => $enforce_new_defaults, - policy_file => $policy_path + policy_file => $policy_path, + policy_dirs => $policy_dirs, } } diff --git a/releasenotes/notes/policy-dirs-2ed6895c4391e395.yaml b/releasenotes/notes/policy-dirs-2ed6895c4391e395.yaml new file mode 100644 index 0000000..8076ef0 --- /dev/null +++ b/releasenotes/notes/policy-dirs-2ed6895c4391e395.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + There is now a new policy_dirs parameter in the mistral::policy class, + so one can set a custom path. diff --git a/spec/classes/mistral_policy_spec.rb b/spec/classes/mistral_policy_spec.rb index bffa37f..d4eb973 100644 --- a/spec/classes/mistral_policy_spec.rb +++ b/spec/classes/mistral_policy_spec.rb @@ -7,6 +7,7 @@ describe 'mistral::policy' do :enforce_scope => false, :enforce_new_defaults => false, :policy_path => '/etc/mistral/policy.yaml', + :policy_dirs => '/etc/mistral/policy.d', :policies => { 'context_is_admin' => { 'key' => 'context_is_admin', @@ -28,6 +29,7 @@ describe 'mistral::policy' do :enforce_scope => false, :enforce_new_defaults => false, :policy_file => '/etc/mistral/policy.yaml', + :policy_dirs => '/etc/mistral/policy.d', ) end end