summaryrefslogtreecommitdiff
path: root/puppet/modules/site_apt/manifests/preferences/unbound.pp
blob: 6232fa10f02f2d60980eb44af9b34b00220304f3 (plain)
1
2
3
4
5
6
7
8
9
10
class site_apt::preferences::unbound {

  apt::preferences_snippet { 'unbound':
    package  => 'libunbound unbound*',
    release  => "${::lsbdistcodename}-backports",
    priority => 999,
    before   => Class['unbound::package'];
  }

}