test/scripts/install-chutney-v3.sh
0 → 100755
+31
−0
Loading
This does nothing without the corresponding v3 functional tests tho. It also assumes a v3 chutney network template that looks like this: # By default, Authorities are not configured as exits Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl") ExitRelay = Node(tag="r", relay=1, exit=1, torrc="relay.tmpl") Client = Node(tag="c", client=1, torrc="client.tmpl") HS = Node(tag="h", hs=1, torrc="hs-v3.tmpl") # We need 5 authorities/relays/exits to ensure we can build HS connections NODES = Authority.getN(3) + ExitRelay.getN(5) + \ Client.getN(2) + HS.getN(4)