summaryrefslogtreecommitdiff
path: root/manifests/definitions/bind-record.pp
blob: 831230658b0d83b40152b08939357e588ae03977 (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
/*

= 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($ensure=present,
    $zone,
    $owner,
    $host,
    $record_type,
    $record_class='IN',
    $ttl=false) {

  common::concatfilepart {"${zone}.${record_type}.${name}":
    ensure  => $ensure,
    file    => "/etc/bind/pri/${zone}.conf",
    content => template("bind/default-record.erb"),
  }
}