]> gitweb.fluxo.info Git - puppet-tor.git/commitdiff
Fix deprecated variable references
authorMicah Anderson <micah@riseup.net>
Fri, 11 Mar 2016 17:08:39 +0000 (12:08 -0500)
committerMicah Anderson <micah@riseup.net>
Fri, 11 Mar 2016 17:08:39 +0000 (12:08 -0500)
templates/torrc.relay.erb

index 511bda11d5bdce1e4096a5192dcd5d00a53ccf5c..a286459f6329fb8ccd6a1ff1d855303bc1458d8b 100644 (file)
@@ -1,11 +1,11 @@
 # relay
 <% if @port != 0 -%>
 ORPort <%= @port %>
-<%   listen_addresses.each do |listen_address| -%>
-ORListenAddress <%= listen_address %>
+<%   @listen_addresses.each do |listen_address| -%>
+ORListenAddress <%= @listen_address %>
 <%   end -%>
-<%   real_outbound_bindaddresses.each do |outbound_bindaddress| -%>
-OutboundBindAddress <%= outbound_bindaddress %>
+<%   @real_outbound_bindaddresses.each do |outbound_bindaddress| -%>
+OutboundBindAddress <%= @outbound_bindaddress %>
 <%   end -%>
 <%   if @nickname != '' -%>
 Nickname <%= @nickname %>