From 0c072f9fc3246879b102d1ba70db63585b5e5d76 Mon Sep 17 00:00:00 2001 From: Ted Strzalkowski Date: Sun, 17 Apr 2016 08:26:31 -0700 Subject: [PATCH] Do not spec dnssec-tools for installation on Debian Jessie. Due to issues with rollerd[1], dnssec-tools was removed from testing[2] and did not make it into Debian Jessie. This removes that package spec from the formula and leaves it as an exercise to the user to solve how to satisfy the requirement. [1]: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=754704 [2]: https://packages.qa.debian.org/d/dnssec-tools/news/20140812T163915Z.html --- bind/map.jinja | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bind/map.jinja b/bind/map.jinja index ea03d4b..fec64a5 100644 --- a/bind/map.jinja +++ b/bind/map.jinja @@ -44,8 +44,12 @@ 'mode': '640' }, }, merge=salt['grains.filter_by']({ + 'jessie': { + 'pkgs': ['bind9', 'bind9utils'], + }, +}, grain='oscodename', merge=salt['grains.filter_by']({ 'Ubuntu': { 'log_dir': '/var/log/named', 'user': 'bind' }, -}, grain='os', merge=salt['pillar.get']('bind:lookup'))) %} +}, grain='os', merge=salt['pillar.get']('bind:lookup')))) %}