mirror of
https://github.com/saltstack-formulas/bind-formula.git
synced 2025-04-16 09:40:22 +00:00
15 lines
332 B
Text
15 lines
332 B
Text
![]() |
{% set map = salt['grains.filter_by']({
|
||
|
'Debian': {
|
||
|
'pkgs': ['bind9', 'bind9utils'],
|
||
|
'service': 'named',
|
||
|
|
||
|
'config': '/etc/named.conf',
|
||
|
},
|
||
|
'RedHat': {
|
||
|
'pkgs': ['bind'],
|
||
|
'service': 'named',
|
||
|
|
||
|
'config': '/etc/named.conf',
|
||
|
},
|
||
|
}, merge=salt['pillar.get']('bind:lookup')) %}
|