diff options
author | intrigeri <intrigeri@boum.org> | 2012-11-11 20:57:33 +0100 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2012-11-11 20:57:33 +0100 |
commit | 955c46180a855eb841886d85fd3691cfe471d8cf (patch) | |
tree | 57da2fee02b76213694a51ea2e8ebd72c1a863c3 | |
parent | 49cb5faa62544c589a82b9d48a768eb1391c9a61 (diff) | |
download | puppet-tor-955c46180a855eb841886d85fd3691cfe471d8cf.tar.gz puppet-tor-955c46180a855eb841886d85fd3691cfe471d8cf.tar.bz2 |
Get a lost part of the fix for outbound_bindaddresses back.
The fix was implemented in 8e0dbb0, but apparently I've managed to lose it as
part of one of the numerous merge conflicts I've dealt with when merging
everyone's branch.
-rw-r--r-- | manifests/daemon.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp index 9351b3c..28d257d 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -99,7 +99,7 @@ class tor::daemon ( # relay definition define relay( $port = 0, $listen_addresses = [], - $outbound_bindaddresses = $listen_addresses, + $outbound_bindaddresses = [], $bandwidth_rate = '', # KB/s, defaulting to using tor's default: 5120KB/s $bandwidth_burst = '', # KB/s, defaulting to using tor's default: 10240KB/s $relay_bandwidth_rate = 0, # KB/s, 0 for no limit. |