- fix conflicts when using bind::updater on all nodes.

This commit is contained in:
Stefan - Zipkid - Goethals 2016-01-27 09:49:31 +01:00
parent ba06763b96
commit 12bda76ab9
2 changed files with 10 additions and 9 deletions

View File

@ -20,11 +20,12 @@ class bind (
notify => Service['bind'],
}
package{'bind-tools':
ensure => latest,
name => $nsupdate_package,
before => Package['bind'],
}
include ::bind::updater
# package{'bind-tools':
# ensure => latest,
# name => $nsupdate_package,
# before => Package['bind'],
# }
package { 'bind':
ensure => latest,

View File

@ -5,13 +5,13 @@ class bind::updater (
) inherits bind::defaults {
if $nsupdate_package {
package { 'nsupdate':
package { 'bind-tools':
ensure => present,
name => $nsupdate_package,
}
}
class { 'bind::keydir':
keydir => $keydir,
}
# class { 'bind::keydir':
# keydir => $keydir,
# }
}