summaryrefslogtreecommitdiff
path: root/Property/Tor.hs
blob: f7182120a9932d3959681a45454cc215c8641b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"]