summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-06-09 15:01:41 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-06-09 15:01:41 +0200
commit3fa2f412f300d76e34132263f9eb3f8ad4c779a2 (patch)
tree9dec5912a0e072b696e87c491cbd7ebad8248167
parentCreate empty files to please glob. (diff)
downloaddns-3fa2f412f300d76e34132263f9eb3f8ad4c779a2.tar.gz
dns-3fa2f412f300d76e34132263f9eb3f8ad4c779a2.tar.xz
s/name/entry/g
-rw-r--r--manifests/zone.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/manifests/zone.pp b/manifests/zone.pp
index e6fc397..3e7ac12 100644
--- a/manifests/zone.pp
+++ b/manifests/zone.pp
@@ -143,12 +143,12 @@ define dns::zone (
}
}
- $ns.each |$name| {
- dns::record { "${zone_} NS ${name}":
+ $ns.each |$entry| {
+ dns::record { "${zone_} NS ${entry}":
zone => $zone_,
key => '@',
type => 'NS',
- value => $name,
+ value => $entry,
}
}