diff options
author | drebs <drebs@riseup.net> | 2012-01-11 02:24:57 -0200 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2012-01-11 02:24:57 -0200 |
commit | fe15c0625244c43d977fef2831720d01dc921f2b (patch) | |
tree | 646c2779bdc302dfbc9e0710dbb5f9d8254ac322 /manifests/daemon.pp | |
parent | debb1877f556b312bf23533f93c0cbe5fed55751 (diff) | |
download | puppet-tor-fe15c0625244c43d977fef2831720d01dc921f2b.tar.gz puppet-tor-fe15c0625244c43d977fef2831720d01dc921f2b.tar.bz2 |
fixing parameter name
Diffstat (limited to 'manifests/daemon.pp')
-rw-r--r-- | manifests/daemon.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp index c522e9f..6ac6dec 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -96,8 +96,8 @@ class tor::daemon inherits tor { # relay definition define relay( $port = 0, $listen_addresses = [], - $relay_bandwidth_rate = 0, # KB/s, 0 for no limit. - $relay_bandwidth_burst = 0, # KB/s, 0 for no limit. + $bandwidth_rate = 0, # KB/s, 0 for no limit. + $bandwidth_burst = 0, # KB/s, 0 for no limit. $accounting_max = 0, # GB, 0 for no limit. $accounting_start = [], $contact_info = '', |