From ca7cb13ae91201b0242e13e396fc365808d08fd5 Mon Sep 17 00:00:00 2001 From: Dominik Schleich Date: Thu, 27 Aug 2015 16:11:22 +0200 Subject: [PATCH] changed the default aliases variable name to match the one checked in init.sls --- postfix/map.jinja | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/postfix/map.jinja b/postfix/map.jinja index c884024..49bf76a 100644 --- a/postfix/map.jinja +++ b/postfix/map.jinja @@ -4,27 +4,27 @@ 'policyd_spf_pkg': 'postfix-policyd-spf-python', 'postgrey_pkg': 'postgrey', 'service': 'postfix', - 'aliases': '/etc/aliases', + 'aliases_file': '/etc/aliases', }, 'Gentoo': { 'package': 'mail-mta/postfix', 'policyd_spf_pkg': 'mail-filter/pypolicyd-spf', 'postgrey_pkg': 'mail-filter/postgrey', 'service': 'postfix', - 'aliases': '/etc/mail/aliases', + 'aliases_file': '/etc/mail/aliases', }, 'RedHat': { 'package': 'postfix', 'policyd_spf_pkg': 'pypolicyd-spf', 'postgrey_pkg': 'postgrey', 'service': 'postfix', - 'aliases': '/etc/aliases', + 'aliases_file': '/etc/aliases', }, 'Arch' : { 'package': 'postfix', 'policyd_spf_pkg': 'python-postfix-policyd-spf', 'postgrey_pkg': 'postgrey', 'service': 'postfix', - 'aliases': '/etc/aliases', + 'aliases_file': '/etc/aliases', }, }, merge=salt['pillar.get']('postfix:lookup')) %}