summaryrefslogtreecommitdiff
path: root/manifests/record.pp
blob: 8448afea3cea8070c30440db69d15a0b197b6e7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# = Definition: bind::record
#
# Helper to create any record you want (but NOT MX, please refer to Bind::Mx)
#
# Arguments:
#  *$zone*:        Bind::Zone name
#  *$owner*:       owner of the Resource Record
#  *$host*:        target of the Resource Record
#  *$record_type:  resource record type
#  *$record_class*: resource record class. Default "IN".
#  *$ttl*:          Time to Live for the Resource Record. Optional.
#
define bind::record (
  $zone,
  $host,
  $record_type,
  $ensure       = present,
  $owner        = false,
  $record_class = 'IN',
  $ttl          = false
) {

  if $owner {
    $_owner = $owner
  } else {
    $_owner = $name
  }

  concat::fragment {"${zone}.${record_type}.${name}":
    ensure  => $ensure,
    target  => "/etc/bind/pri/${zone}.conf",
    content => template('bind/default-record.erb'),
    notify  => Service['bind9'],
  }

}