summaryrefslogtreecommitdiff
path: root/puppet/modules/tor/manifests/daemon/exit_policy.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/tor/manifests/daemon/exit_policy.pp')
-rw-r--r--puppet/modules/tor/manifests/daemon/exit_policy.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/puppet/modules/tor/manifests/daemon/exit_policy.pp b/puppet/modules/tor/manifests/daemon/exit_policy.pp
new file mode 100644
index 00000000..f459ece7
--- /dev/null
+++ b/puppet/modules/tor/manifests/daemon/exit_policy.pp
@@ -0,0 +1,18 @@
+# exit policies
+define tor::daemon::exit_policy(
+ $accept = [],
+ $reject = [],
+ $reject_private = 1,
+ $ensure = present ) {
+
+ concat::fragment { "07.exit_policy.${name}":
+ ensure => $ensure,
+ content => template('tor/torrc.exit_policy.erb'),
+ owner => 'debian-tor',
+ group => 'debian-tor',
+ mode => '0644',
+ order => 07,
+ target => $tor::daemon::config_file,
+ }
+}
+