|
@@ -84,6 +84,8 @@ data_dir = sys.argv[2]
|
|
|
|
|
|
empty_torrc_path = os.path.join(data_dir, 'empty_torrc')
|
|
empty_torrc_path = os.path.join(data_dir, 'empty_torrc')
|
|
open(empty_torrc_path, 'w').close()
|
|
open(empty_torrc_path, 'w').close()
|
|
|
|
+empty_defaults_torrc_path = os.path.join(data_dir, 'empty_defaults_torrc')
|
|
|
|
+open(empty_defaults_torrc_path, 'w').close()
|
|
|
|
|
|
tor_process = subprocess.Popen([tor_path,
|
|
tor_process = subprocess.Popen([tor_path,
|
|
'-DataDirectory', data_dir,
|
|
'-DataDirectory', data_dir,
|
|
@@ -92,7 +94,9 @@ tor_process = subprocess.Popen([tor_path,
|
|
'-Log', 'debug stdout',
|
|
'-Log', 'debug stdout',
|
|
'-LogTimeGranularity', '1',
|
|
'-LogTimeGranularity', '1',
|
|
'-FetchServerDescriptors', '0',
|
|
'-FetchServerDescriptors', '0',
|
|
- '-f', empty_torrc_path],
|
|
|
|
|
|
+ '-f', empty_torrc_path,
|
|
|
|
+ '--defaults-torrc', empty_defaults_torrc_path,
|
|
|
|
+ ],
|
|
stdout=subprocess.PIPE,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.PIPE)
|
|
stderr=subprocess.PIPE)
|
|
|
|
|