Merge pull request #80 from bawuenet/proxy_map_support
Fix table type for proxy tables
This commit is contained in:
commit
1da803467f
@ -120,7 +120,10 @@ policy-spf_time_limit = {{ policyd_spf.get('time_limit', '3600s') }}
|
|||||||
|
|
||||||
{%- for mapping, data in salt['pillar.get']('postfix:mapping', {}).items() %}
|
{%- for mapping, data in salt['pillar.get']('postfix:mapping', {}).items() %}
|
||||||
{%- set file_path = salt['pillar.get']('postfix:config:' ~ mapping) %}
|
{%- set file_path = salt['pillar.get']('postfix:config:' ~ mapping) %}
|
||||||
{%- if ':' in file_path %}
|
{%- if file_path.startswith('proxy:') %}
|
||||||
|
{#- Discard the proxy:-prefix #}
|
||||||
|
{%- set _, file_type, file_path = file_path.split(':') %}
|
||||||
|
{%- elif ':' in file_path %}
|
||||||
{%- set file_type, file_path = file_path.split(':') %}
|
{%- set file_type, file_path = file_path.split(':') %}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
{%- set file_type = default_database_type %}
|
{%- set file_type = default_database_type %}
|
||||||
|
@ -76,7 +76,10 @@ postfix_alias_absent_{{ user }}:
|
|||||||
{% for mapping, data in salt['pillar.get']('postfix:mapping', {}).items() %}
|
{% for mapping, data in salt['pillar.get']('postfix:mapping', {}).items() %}
|
||||||
{%- set need_postmap = False %}
|
{%- set need_postmap = False %}
|
||||||
{%- set file_path = salt['pillar.get']('postfix:config:' ~ mapping) %}
|
{%- set file_path = salt['pillar.get']('postfix:config:' ~ mapping) %}
|
||||||
{%- if ':' in file_path %}
|
{%- if file_path.startswith('proxy:') %}
|
||||||
|
{#- Discard the proxy:-prefix #}
|
||||||
|
{%- set _, file_type, file_path = file_path.split(':') %}
|
||||||
|
{%- elif ':' in file_path %}
|
||||||
{%- set file_type, file_path = file_path.split(':') %}
|
{%- set file_type, file_path = file_path.split(':') %}
|
||||||
{%- else %}
|
{%- else %}
|
||||||
{%- set file_type = default_database_type %}
|
{%- set file_type = default_database_type %}
|
||||||
|
Loading…
Reference in New Issue
Block a user