summaryrefslogtreecommitdiff
path: root/manifests/definitions/bind-aaaa.pp
blob: a20a58c6afe08470f74e95eebb2b550df82d04c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
define bind::aaaa($ensure=present,
    $zone,
    $owner,
    $host,
    $ttl=false) {

  bind::record {$name:
    ensure => $ensure,
    zone   => $zone,
    owner  => $owner,
    host   => $host,
    ttl   => $ttl,
    record_type => 'AAAA',
  }

}