aboutsummaryrefslogtreecommitdiff
path: root/manifests/rules/torify/allow_tor_user.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/rules/torify/allow_tor_user.pp')
-rw-r--r--manifests/rules/torify/allow_tor_user.pp15
1 files changed, 0 insertions, 15 deletions
diff --git a/manifests/rules/torify/allow_tor_user.pp b/manifests/rules/torify/allow_tor_user.pp
deleted file mode 100644
index f44c1f0..0000000
--- a/manifests/rules/torify/allow_tor_user.pp
+++ /dev/null
@@ -1,15 +0,0 @@
-class shorewall::rules::torify::allow_tor_user {
-
- $whitelist_rule = "allow-from-tor-user"
- if !defined(Shorewall::Rule["$whitelist_rule"]) {
- shorewall::rule {
- "$whitelist_rule":
- source => '$FW',
- destination => 'all',
- user => $shorewall::tor_user,
- order => 101,
- action => 'ACCEPT';
- }
- }
-
-}