Skip to content

Commit

Permalink
refactor(config): add default_database_type as default value
Browse files Browse the repository at this point in the history
  • Loading branch information
javierbertoli committed Jan 24, 2022
1 parent 3bd3d1c commit 6da70d2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
3 changes: 1 addition & 2 deletions postfix/config.sls
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{% from "postfix/map.jinja" import postfix with context %}
{%- set default_database_type = postfix.get('config', {}).get('default_database_type', 'hash')%}
include:
- postfix
Expand Down Expand Up @@ -119,7 +118,7 @@ postfix-config-file-managed-{{ domain }}-ssl-key:
{%- elif ':' in file_path %}
{%- set file_type, file_path = file_path.split(':') %}
{%- else %}
{%- set file_type = default_database_type %}
{%- set file_type = postfix.default_database_type %}
{%- endif %}
{%- if not file_path.startswith('/') %}
{%- set file_path = postfix.config_path ~ '/' ~ file_path %}
Expand Down
1 change: 1 addition & 0 deletions postfix/defaults.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ postfix:
service: postfix
xbin_prefix: /usr
dovecot_deliver: /usr/lib/dovecot/deliver
default_database_type: hash
4 changes: 1 addition & 3 deletions postfix/files/main.cf
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,6 @@ policy-spf_time_limit = {{ policyd_spf.get('time_limit', '3600s') }}
{{ set_parameter('smtpd_recipient_restrictions', recipient_restrictions) }}

{# From init.sls #}
{%- set default_database_type = salt['pillar.get']('postfix:config:default_database_type', 'hash') %}

{%- for mapping, data in salt['pillar.get']('postfix:mapping', {}).items() %}
{%- set file_path = salt['pillar.get']('postfix:config:' ~ mapping) %}
{%- if file_path.startswith('proxy:') %}
Expand All @@ -128,7 +126,7 @@ policy-spf_time_limit = {{ policyd_spf.get('time_limit', '3600s') }}
{%- elif ':' in file_path %}
{%- set file_type, file_path = file_path.split(':') %}
{%- else %}
{%- set file_type = default_database_type %}
{%- set file_type = postfix.default_database_type %}
{%- endif %}
{%- if not file_path.startswith('/') %}
{%- set file_path = postfix.config_path ~ '/' ~ file_path %}
Expand Down
5 changes: 1 addition & 4 deletions postfix/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ postfix-init-service-running-postfix-restart:
- pkg: postfix-init-pkg-installed-postfix
{%- endif %}
{# Used for newaliases, postalias and postconf #}
{%- set default_database_type = salt['pillar.get']('postfix:config:default_database_type', 'hash') %}
# manage /etc/aliases if data found in pillar
{% if 'aliases' in pillar.get('postfix', '') %}
{% if salt['pillar.get']('postfix:aliases:use_file', true) == true %}
Expand All @@ -55,7 +52,7 @@ postfix-init-service-running-postfix-restart:
{%- if ':' in file_path %}
{%- set file_type, file_path = postfix.aliases_file.split(':') %}
{%- else %}
{%- set file_type = default_database_type %}
{%- set file_type = postfix.default_database_type %}
{%- endif %}
{%- if file_type in ("btree", "cdb", "dbm", "hash", "sdbm") %}
{%- set need_newaliases = True %}
Expand Down

0 comments on commit 6da70d2

Please sign in to comment.