aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorduritong <peter.meier+github@immerda.ch>2013-06-24 23:57:14 -0700
committerduritong <peter.meier+github@immerda.ch>2013-06-24 23:57:14 -0700
commitaf692e5858753ed695043ff8bc1d33f227fb0f85 (patch)
treee663bb227dd14b7865cd35b9c6be6c8122f481d9
parentdcb6e748864e7dfd3c14f4f2aba4c9120f12b78a (diff)
parent5b8492c2709dde3400e39f7262fe2d5ad5c3d617 (diff)
downloadpuppet-tor-af692e5858753ed695043ff8bc1d33f227fb0f85.tar.gz
puppet-tor-af692e5858753ed695043ff8bc1d33f227fb0f85.tar.bz2
Merge pull request #4 from micah/outbound_bindaddresses
Outbound bindaddresses
-rw-r--r--README5
-rw-r--r--manifests/daemon/relay.pp2
2 files changed, 6 insertions, 1 deletions
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
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
}