2017-08-24 11:21:48 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim: ft=jinja
|
|
|
|
|
2017-12-08 03:06:42 +01:00
|
|
|
{% import_yaml "postfix/defaults.yaml" as defaults %}
|
|
|
|
{% import_yaml "postfix/osmap.yaml" as osmap %}
|
|
|
|
|
|
|
|
{% set postfix = salt['grains.filter_by'](
|
|
|
|
defaults,
|
|
|
|
merge=salt['grains.filter_by'](
|
|
|
|
osmap,
|
|
|
|
grain='os',
|
|
|
|
merge=salt['pillar.get']('postfix:lookup', {}),
|
|
|
|
),
|
|
|
|
base='postfix')
|
2017-08-24 11:21:48 +02:00
|
|
|
%}
|