Fixed dns::server package name for CentOS 5.

This commit is contained in:
Timo Mkinen 2012-03-22 10:49:37 +02:00
parent b8534b568b
commit 34be570ebc

View file

@ -6,6 +6,10 @@ class dns::server {
package { "bind":
name => $operatingsystem ? {
"ubuntu" => "bind9",
"centos" => $operatingsystemrelease ? {
/^5\..*/ => [ "bind-chroot", "caching-nameserver", ],
default => "bind-chroot",
},
default => "bind-chroot",
}
}