aboutsummaryrefslogtreecommitdiff
path: root/manifests/rules/torify/allow_tor_user.pp
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2012-11-11 23:12:41 +0100
committerintrigeri <intrigeri@boum.org>2012-11-11 23:12:41 +0100
commite31f901dc4a40b87611871d0cd783bbcec1ba4ed (patch)
tree489f62edc01ded9a88e39cdc9c84d5f7c7351e1c /manifests/rules/torify/allow_tor_user.pp
parent6c29c55b9cc35a3ba06704e34dd3483a33c85898 (diff)
parent6bc54f031b9ae12fe428c83e70733c8b2ff4c67a (diff)
downloadpuppet-shorewall-e31f901dc4a40b87611871d0cd783bbcec1ba4ed.tar.gz
puppet-shorewall-e31f901dc4a40b87611871d0cd783bbcec1ba4ed.tar.bz2
Merge branch 'feature/torification-exception' into old-master
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';
- }
- }
-
-}