don't restart tor unless its our own
parent
5b78a8810d
commit
d4dd964069
|
@ -1,5 +1,8 @@
|
||||||
import netcontroller
|
import netcontroller
|
||||||
|
import config
|
||||||
|
|
||||||
def restart(comm_inst):
|
def restart(comm_inst):
|
||||||
net = comm_inst.shared_state.get(netcontroller.NetController)
|
if not config.get('tor.use_existing_tor', False):
|
||||||
net.killTor()
|
net = comm_inst.shared_state.get(netcontroller.NetController)
|
||||||
net.startTor()
|
net.killTor()
|
||||||
|
net.startTor()
|
||||||
|
|
Loading…
Reference in New Issue