From 4962313db98dbe14293ce219539fae1aceab007e Mon Sep 17 00:00:00 2001 From: amontero Date: Sun, 28 Apr 2013 23:35:01 +0200 Subject: Empty template variable for OutboundBindAddress if parameter is an empty array. --- manifests/daemon/relay.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/daemon/relay.pp b/manifests/daemon/relay.pp index d5296de..d92a8b9 100644 --- a/manifests/daemon/relay.pp +++ b/manifests/daemon/relay.pp @@ -24,7 +24,7 @@ define tor::daemon::relay( $nickname = $name if $outbound_bindaddresses == [] { - $real_outbound_bindaddresses = $listen_addresses + $real_outbound_bindaddresses = '' } else { $real_outbound_bindaddresses = $outbound_bindaddresses } -- cgit v1.2.3 From 5b8492c2709dde3400e39f7262fe2d5ad5c3d617 Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Mon, 24 Jun 2013 15:49:04 -0400 Subject: add upgrade notice to the README to detail the outbound_bindaddress change --- README | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README b/README index c241118..d52a2b3 100644 --- a/README +++ b/README @@ -7,6 +7,11 @@ policies, etc. ! Upgrade Notice ! + previously, if you did not set the $outbound_bindaddress variable, it was being + automatically set to the $listen_address variable. Now this is not being done + and instead you will need to set the $outbound_bindaddress explicitly for it to + be set. + the tor::relay{} variables $bandwidth_rate and $bandwidth_burst were previously used for the tor configuration variables RelayBandwidthRate and RelayBandwidthBurst, these have been renamed to $relay_bandwidth_rate and -- cgit v1.2.3