summaryrefslogtreecommitdiff
path: root/manifests/daemon/relay.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2013-01-02 13:41:56 +0100
committermh <mh@immerda.ch>2013-01-02 13:41:56 +0100
commit3fb09572cbbef20a72feb3e3a50711ba7eba1cea (patch)
tree71c1e5e7396d8705fb291d0f2080bd58ba90e71b /manifests/daemon/relay.pp
parentb421d5d7936a7e2f93f1c62322a669d91693b9b6 (diff)
split out defines into their own files
Diffstat (limited to 'manifests/daemon/relay.pp')
-rw-r--r--manifests/daemon/relay.pp41
1 files changed, 41 insertions, 0 deletions
diff --git a/manifests/daemon/relay.pp b/manifests/daemon/relay.pp
new file mode 100644
index 0000000..d5296de
--- /dev/null
+++ b/manifests/daemon/relay.pp
@@ -0,0 +1,41 @@
+# relay definition
+define tor::daemon::relay(
+ $port = 0,
+ $listen_addresses = [],
+ $outbound_bindaddresses = [],
+ # KB/s, defaulting to using tor's default: 5120KB/s
+ $bandwidth_rate = '',
+ # KB/s, defaulting to using tor's default: 10240KB/s
+ $bandwidth_burst = '',
+ # KB/s, 0 for no limit
+ $relay_bandwidth_rate = 0,
+ # KB/s, 0 for no limit
+ $relay_bandwidth_burst = 0,
+ # GB, 0 for no limit
+ $accounting_max = 0,
+ $accounting_start = [],
+ $contact_info = '',
+ # TODO: autofill with other relays
+ $my_family = '',
+ $address = "tor.${::domain}",
+ $bridge_relay = 0,
+ $ensure = present ) {
+
+ $nickname = $name
+
+ if $outbound_bindaddresses == [] {
+ $real_outbound_bindaddresses = $listen_addresses
+ } else {
+ $real_outbound_bindaddresses = $outbound_bindaddresses
+ }
+
+ concat::fragment { '03.relay':
+ ensure => $ensure,
+ content => template('tor/torrc.relay.erb'),
+ owner => 'debian-tor',
+ group => 'debian-tor',
+ mode => '0644',
+ order => 03,
+ target => $tor::daemon::config_file,
+ }
+}