summaryrefslogtreecommitdiff
path: root/Property/Tor.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Property/Tor.hs')
-rw-r--r--Property/Tor.hs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Property/Tor.hs b/Property/Tor.hs
deleted file mode 100644
index f7182120..00000000
--- a/Property/Tor.hs
+++ /dev/null
@@ -1,19 +0,0 @@
-module Property.Tor where
-
-import Common
-import qualified Property.File as File
-import qualified Property.Apt as Apt
-
-isBridge :: Property
-isBridge = setup `requires` Apt.installed ["tor"]
- `describe` "tor bridge"
- where
- setup = "/etc/tor/torrc" `File.hasContent`
- [ "SocksPort 0"
- , "ORPort 443"
- , "BridgeRelay 1"
- , "Exitpolicy reject *:*"
- ] `onChange` restartTor
-
-restartTor :: Property
-restartTor = cmdProperty "service" [Param "tor", Param "restart"]