14 lines
311 B
Puppet
14 lines
311 B
Puppet
# roles::infra::dns::master
|
|
# defines a dns server with master-only zones
|
|
#
|
|
class roles::infra::dns::master {
|
|
if $facts['firstrun'] {
|
|
include profiles::defaults
|
|
include profiles::firstrun::init
|
|
}else{
|
|
include profiles::defaults
|
|
include profiles::base
|
|
include profiles::dns::master
|
|
}
|
|
}
|