summaryrefslogtreecommitdiff
path: root/manifests/definitions/bind-aaaa.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/definitions/bind-aaaa.pp')
-rw-r--r--manifests/definitions/bind-aaaa.pp16
1 files changed, 16 insertions, 0 deletions
diff --git a/manifests/definitions/bind-aaaa.pp b/manifests/definitions/bind-aaaa.pp
new file mode 100644
index 0000000..a20a58c
--- /dev/null
+++ b/manifests/definitions/bind-aaaa.pp
@@ -0,0 +1,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',
+ }
+
+}