aboutsummaryrefslogtreecommitdiff
path: root/manifests/daemon.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/daemon.pp')
-rw-r--r--manifests/daemon.pp17
1 files changed, 16 insertions, 1 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp
index 0778bce..2484edf 100644
--- a/manifests/daemon.pp
+++ b/manifests/daemon.pp
@@ -76,7 +76,8 @@ class tor::daemon inherits tor {
# global configurations
define global_opts( $data_dir = $tor::daemon::data_dir,
- $log_rules = [ 'notice file /var/log/tor/notices.log' ] ) {
+ $log_rules = [ 'notice file /var/log/tor/notices.log' ],
+ $use_bridges = 0 ) {
concatenated_file_part { '01.global':
dir => $tor::daemon::snippet_dir,
@@ -217,5 +218,19 @@ class tor::daemon inherits tor {
}
}
+ # Bridge definition
+ define bridge( $ip,
+ $port,
+ $fingerprint = false,
+ $ensure = present ) {
+
+ concatenated_file_part { "10.bridge.${name}":
+ dir => $tor::daemon::snippet_dir,
+ content => template('tor/torrc.bridge.erb'),
+ owner => 'debian-tor', group => 'debian-tor', mode => 0644,
+ ensure => $ensure,
+ }
+ }
+
}