nsswitch-formula/nsswitch/map.jinja
2017-10-30 13:25:10 -04:00

37 lines
917 B
Django/Jinja

# -*- coding: utf-8 -*-
# vim: ft=jinja
{## Start with defaults from defaults.sls ##}
{% import_yaml 'nsswitch/defaults.yaml' as default_settings %}
{##
Setup variable using grains['os_family'] based logic, only add key:values here
that differ from whats in defaults.yaml
##}
{% set flavor_map = salt['grains.filter_by'](
{
'Debian': {
'config_path': '/etc/nsswitch.conf',
},
'FreeBSD': {
'package_name': 'nss',
'config_path': '/etc/nsswitch.conf',
},
'RedHat': {
'config_path': '/etc/nsswitch.conf',
}
},
grain='os_family',
merge=salt['pillar.get']('nsswitch:lookup')
) %}
{## Merge the flavor_map over the default settings ##}
{% do default_settings.nsswitch.update(flavor_map) %}
{## Merge in changes from the nsswitch:lookup pillar ##}
{% set nsswitch_settings = salt['pillar.get'](
'nsswitch',
default=default_settings.nsswitch,
merge=True
) %}