summaryrefslogtreecommitdiff
path: root/templates/torrc.dns.erb
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollito@riseup.net>2017-10-11 15:35:21 -0400
committerLouis-Philippe VĂ©ronneau <pollito@riseup.net>2017-10-11 15:35:21 -0400
commit26f56433a57aec688a18a964751cfe08b62d9bd8 (patch)
treee9963256735a2987e4055986c2cd03da56de68f8 /templates/torrc.dns.erb
parent5ef29012dccc90e68afc215be9521629a0903bc6 (diff)
puppet 4 needs arrays in templates to be marked as such
Diffstat (limited to 'templates/torrc.dns.erb')
-rw-r--r--templates/torrc.dns.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/torrc.dns.erb b/templates/torrc.dns.erb
index 57cf46d..2b9ff8e 100644
--- a/templates/torrc.dns.erb
+++ b/templates/torrc.dns.erb
@@ -1,5 +1,5 @@
# DNS
DNSPort <%= @port %>
-<% @listen_addresses.each do |listen_address| -%>
+<% Array(@listen_addresses).each do |listen_address| -%>
DNSListenAddress <%= listen_address %>
<% end -%>