Puppet Class: role::dnsbox

Defined in:
modules/role/manifests/dnsbox.pp

Overview

Combo role for configuring production dnsN00x machines with recursive DNS, authoritative DNS, and NTP.



3
4
5
6
7
8
9
10
11
# File 'modules/role/manifests/dnsbox.pp', line 3

class role::dnsbox {
    system::role { 'dnsbox': description => 'DNS auth/recursor and NTP Site Infra Server' }

    include profile::base::production
    include profile::ntp
    include profile::dns::auth
    include profile::dns::recursor

}