From 129f9b85ce013c64b7463399f89c52c44fc84276 Mon Sep 17 00:00:00 2001 From: P2P-Next Date: Wed, 1 Sep 2010 15:10:00 +0300 Subject: [PATCH] autorun: changes for tests, currently unstable --- autorun/Util.py | 3 +- autorun/commander/Commander.py | 9 +- autorun/server/Client.py | 17 +- autorun/server/Server.py | 14 +- autorun/xml/clients.xml | 4 +- autorun/xml/genxml.py | 11 +- autorun/xml/nodes.xml | 2198 +------------------------------- autorun/xml/swarm.xml | 1202 +---------------- 8 files changed, 119 insertions(+), 3339 deletions(-) diff --git a/autorun/Util.py b/autorun/Util.py index e710800..dab644c 100644 --- a/autorun/Util.py +++ b/autorun/Util.py @@ -3,9 +3,10 @@ DAEMON_PID_PATH = "/var/tmp/autorun-server.pid" SERVER_DIR = "/home/p2p/cs-p2p-next/autorun/server/" SERVER_FILE = "Server.py" +SERVER_START_SCRIPT = "start-server" SERVER_TYPE = "python" SERVER_PORT = 10004 -SERVER_HOST = "172.16.20.3" +SERVER_HOST = "10.1.4.1" import os def get_sessions_file_path(): diff --git a/autorun/commander/Commander.py b/autorun/commander/Commander.py index 8e4a434..ae5d0b1 100644 --- a/autorun/commander/Commander.py +++ b/autorun/commander/Commander.py @@ -108,8 +108,8 @@ class Commander(Thread): callbacks[comm](node, si) def startNodeServer(self, node): - comm = SERVER_TYPE+" "+SERVER_DIR+SERVER_FILE+\ - " start " + node. private_address + comm = SERVER_DIR + SERVER_START_SCRIPT +\ + " " + node.private_address self.sendSSHComm(node.public_address, node.username, int(node.ssh_port), @@ -190,6 +190,7 @@ class Commander(Thread): def sendSSHComm(self, hostname, username, port, comm): try: + print comm self.sshc.connect(hostname=hostname, username=username, port=port) @@ -220,8 +221,8 @@ class Commander(Thread): node.private_address, node.private_port, node.private_iface) - self.tc.set_upload_limit(si.upload_limit) - self.tc.set_download_limit(si.download_limit) + #self.tc.set_upload_limit(si.upload_limit) + #self.tc.set_download_limit(si.download_limit) commands = self.tc.get_all_commands() #~ self.sendMultipleSSHComm(node.public_address, diff --git a/autorun/server/Client.py b/autorun/server/Client.py index fd4d1fe..cd03623 100644 --- a/autorun/server/Client.py +++ b/autorun/server/Client.py @@ -91,6 +91,8 @@ def test_all_commands(torrent_file): OUT_DIR: "/home/p2p/p2p-log/tribler", OUT_FILE: torrent_name + ".out", #status messages LOG_FILE: "tribler-" + torrent_name + ".log", #verbose messages + DL_LIMIT: 250, + UP_LIMIT: 250 } start_data_transmission = { @@ -102,6 +104,8 @@ def test_all_commands(torrent_file): OUT_DIR: "/home/p2p/p2p-log/transmission", OUT_FILE: torrent_name + ".out", #status messages LOG_FILE: "transmission-" + torrent_name + ".log", #verbose messages + DL_LIMIT: 250, + UP_LIMIT: 250 } @@ -114,7 +118,8 @@ def test_all_commands(torrent_file): OUT_DIR: "/home/p2p/p2p-log/hrktorrent", OUT_FILE: torrent_name + ".out", #status messages LOG_FILE: "", #verbose messages - + DL_LIMIT: 250, + UP_LIMIT: 250 } #print s.send_command(GET_OUTPUT, "") @@ -141,18 +146,24 @@ def test_all_commands(torrent_file): print response """ """time.sleep(3)""" + + response = s.send_command(START_MSG, start_data_hrktorrent) + print response + pid1 = response[1] + print pid1 + """ s = MySocket() s.connect(SERVER_HOST, SERVER_PORT) response = s.send_command(STOP_MSG, pid2) print response """ - """ + s = MySocket() s.connect(SERVER_HOST, SERVER_PORT) response = s.send_command(STOP_MSG, pid1) print response - """ + def test_send_recv(): # test 1 diff --git a/autorun/server/Server.py b/autorun/server/Server.py index ae42515..54b6b46 100644 --- a/autorun/server/Server.py +++ b/autorun/server/Server.py @@ -136,8 +136,8 @@ class MyDaemon(Daemon): raise def add_to_output_msg(self, file_list, info_dict): - """ Constructs a list with self.logger file info - paths, client, metafile - @param file_list list to which the created self.logger info list in appended. """ + """ Constructs a list with log files info - paths, client, metafile + @param file_list - list to which the created logs info list is appended. """ if CLIENT not in info_dict and TORRENT not in info_dict: return -1 @@ -275,11 +275,13 @@ class MyDaemon(Daemon): try: btcr.config_run(bt_client_data[DL_DIR], bt_client_data[OUT_DIR], bt_client_data[OUT_FILE], bt_client_data[LOG_DIR], - bt_client_data[LOG_FILE], bt_client_data[PORT], - bt_client_data[TORRENT]) + bt_client_data[LOG_FILE], bt_client_data[PORT], + bt_client_data[DL_LIMIT], bt_client_data[UP_LIMIT], + bt_client_data[TORRENT], ) btcr.start() - [pid, log_fd, output_fd] = btcr.run_client(btcr.simple_run_command, bt_client_data[CLIENT]) + [pid, log_fd, output_fd] = btcr.run_client(btcr.simple_run_command, + bt_client_data[CLIENT]) self.processes_fd[pid] = [log_fd, output_fd] self.processes_info[pid] = [bt_client_data[CLIENT], bt_client_data[TORRENT], @@ -337,7 +339,6 @@ class MyDaemon(Daemon): self.logger.debug(" accepting connections") (clientsock, address) = self.serversocket.accept(); self.logger.debug(" accepted connection from " +str(address)) - msg = self.recv_pickled_data(clientsock) err_msg = '' @@ -414,6 +415,7 @@ class MyDaemon(Daemon): self.send_pickled_data(clientsock, (ACK_MSG, response)) clientsock.close() + except Exception, ex: self.logger.error("Exception occured: "+ str(ex)) diff --git a/autorun/xml/clients.xml b/autorun/xml/clients.xml index f8a805c..4dba31d 100644 --- a/autorun/xml/clients.xml +++ b/autorun/xml/clients.xml @@ -20,8 +20,10 @@ + -u + -d -p - -d + -o diff --git a/autorun/xml/genxml.py b/autorun/xml/genxml.py index 7797c1e..77014b7 100755 --- a/autorun/xml/genxml.py +++ b/autorun/xml/genxml.py @@ -2,9 +2,12 @@ from lxml import etree import sys -containers = ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10"] +#containers = ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10"] #containers=["01"] +containers=["04"] +virtual_machines = ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10"] machine_template = "141.85.224.2xx" +vm_template = "10.1.xx.1" sshp_template = "1xx22" bittorentp_template = "1xx69" commanderp_template = "1xx04" @@ -16,19 +19,19 @@ client_paths = { } def genxmls(bittorent_client, torrent_file): - torrent_path = "/home/p2p/p2p-meta/" + torrent_file +".torrent" + torrent_path = "/home/p2p/export/torrent-files/" + torrent_file +".torrent" swarm = etree.Element("swarm") (etree.SubElement(swarm, "torrent_file")).text = torrent_path nodes = etree.Element("nodes") id=1 for container1 in containers: - for container2 in containers: + for container2 in virtual_machines: node = etree.SubElement(nodes, "node", id=str(id)) (etree.SubElement(node, "public_address")).text = machine_template.replace("xx", container1) (etree.SubElement(node, "public_port")).text = bittorentp_template.replace("xx", container2) (etree.SubElement(node, "public_iface")).text = "eth0" - (etree.SubElement(node, "private_address")).text = machine_template.replace("xx", container1) + (etree.SubElement(node, "private_address")).text = vm_template.replace("xx", container1) (etree.SubElement(node, "private_port")).text = "" (etree.SubElement(node, "private_iface")).text = "" (etree.SubElement(node, "ssh_port")).text = sshp_template.replace("xx", container2) diff --git a/autorun/xml/nodes.xml b/autorun/xml/nodes.xml index 1f6fc34..68687a9 100644 --- a/autorun/xml/nodes.xml +++ b/autorun/xml/nodes.xml @@ -1,10 +1,10 @@ - 141.85.224.201 + 141.85.224.204 10169 eth0 - 141.85.224.201 + 10.1.04.1 10122 @@ -25,10 +25,10 @@ - 141.85.224.201 + 141.85.224.204 10269 eth0 - 141.85.224.201 + 10.1.04.1 10222 @@ -49,10 +49,10 @@ - 141.85.224.201 + 141.85.224.204 10369 eth0 - 141.85.224.201 + 10.1.04.1 10322 @@ -73,10 +73,10 @@ - 141.85.224.201 + 141.85.224.204 10469 eth0 - 141.85.224.201 + 10.1.04.1 10422 @@ -97,10 +97,10 @@ - 141.85.224.201 + 141.85.224.204 10569 eth0 - 141.85.224.201 + 10.1.04.1 10522 @@ -121,10 +121,10 @@ - 141.85.224.201 + 141.85.224.204 10669 eth0 - 141.85.224.201 + 10.1.04.1 10622 @@ -145,10 +145,10 @@ - 141.85.224.201 + 141.85.224.204 10769 eth0 - 141.85.224.201 + 10.1.04.1 10722 @@ -169,10 +169,10 @@ - 141.85.224.201 + 141.85.224.204 10869 eth0 - 141.85.224.201 + 10.1.04.1 10822 @@ -193,10 +193,10 @@ - 141.85.224.201 + 141.85.224.204 10969 eth0 - 141.85.224.201 + 10.1.04.1 10922 @@ -217,2170 +217,10 @@ - 141.85.224.201 - 11069 - eth0 - 141.85.224.201 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10169 - eth0 - 141.85.224.202 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10269 - eth0 - 141.85.224.202 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10369 - eth0 - 141.85.224.202 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10469 - eth0 - 141.85.224.202 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10569 - eth0 - 141.85.224.202 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10669 - eth0 - 141.85.224.202 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10769 - eth0 - 141.85.224.202 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10869 - eth0 - 141.85.224.202 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 10969 - eth0 - 141.85.224.202 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.202 - 11069 - eth0 - 141.85.224.202 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10169 - eth0 - 141.85.224.203 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10269 - eth0 - 141.85.224.203 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10369 - eth0 - 141.85.224.203 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10469 - eth0 - 141.85.224.203 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10569 - eth0 - 141.85.224.203 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10669 - eth0 - 141.85.224.203 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10769 - eth0 - 141.85.224.203 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10869 - eth0 - 141.85.224.203 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 10969 - eth0 - 141.85.224.203 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.203 - 11069 - eth0 - 141.85.224.203 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10169 - eth0 - 141.85.224.204 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10269 - eth0 - 141.85.224.204 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - 141.85.224.204 - 10369 - eth0 - 141.85.224.204 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10469 - eth0 - 141.85.224.204 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10569 - eth0 - 141.85.224.204 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10669 - eth0 - 141.85.224.204 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10769 - eth0 - 141.85.224.204 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10869 - eth0 - 141.85.224.204 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 10969 - eth0 - 141.85.224.204 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.204 - 11069 - eth0 - 141.85.224.204 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10169 - eth0 - 141.85.224.205 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10269 - eth0 - 141.85.224.205 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10369 - eth0 - 141.85.224.205 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10469 - eth0 - 141.85.224.205 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10569 - eth0 - 141.85.224.205 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10669 - eth0 - 141.85.224.205 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10769 - eth0 - 141.85.224.205 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10869 - eth0 - 141.85.224.205 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 10969 - eth0 - 141.85.224.205 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.205 - 11069 - eth0 - 141.85.224.205 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10169 - eth0 - 141.85.224.206 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10269 - eth0 - 141.85.224.206 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10369 - eth0 - 141.85.224.206 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10469 - eth0 - 141.85.224.206 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10569 - eth0 - 141.85.224.206 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10669 - eth0 - 141.85.224.206 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10769 - eth0 - 141.85.224.206 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10869 - eth0 - 141.85.224.206 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 10969 - eth0 - 141.85.224.206 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.206 - 11069 - eth0 - 141.85.224.206 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10169 - eth0 - 141.85.224.207 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10269 - eth0 - 141.85.224.207 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10369 - eth0 - 141.85.224.207 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10469 - eth0 - 141.85.224.207 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10569 - eth0 - 141.85.224.207 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10669 - eth0 - 141.85.224.207 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10769 - eth0 - 141.85.224.207 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10869 - eth0 - 141.85.224.207 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 10969 - eth0 - 141.85.224.207 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.207 - 11069 - eth0 - 141.85.224.207 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10169 - eth0 - 141.85.224.208 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10269 - eth0 - 141.85.224.208 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10369 - eth0 - 141.85.224.208 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10469 - eth0 - 141.85.224.208 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10569 - eth0 - 141.85.224.208 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10669 - eth0 - 141.85.224.208 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10769 - eth0 - 141.85.224.208 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10869 - eth0 - 141.85.224.208 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 10969 - eth0 - 141.85.224.208 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.208 - 11069 - eth0 - 141.85.224.208 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10169 - eth0 - 141.85.224.209 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10269 - eth0 - 141.85.224.209 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10369 - eth0 - 141.85.224.209 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10469 - eth0 - 141.85.224.209 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10569 - eth0 - 141.85.224.209 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10669 - eth0 - 141.85.224.209 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10769 - eth0 - 141.85.224.209 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10869 - eth0 - 141.85.224.209 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 10969 - eth0 - 141.85.224.209 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.209 - 11069 - eth0 - 141.85.224.209 - - - 11022 - p2p - 11004 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10169 - eth0 - 141.85.224.210 - - - 10122 - p2p - 10104 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10269 - eth0 - 141.85.224.210 - - - 10222 - p2p - 10204 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10369 - eth0 - 141.85.224.210 - - - 10322 - p2p - 10304 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10469 - eth0 - 141.85.224.210 - - - 10422 - p2p - 10404 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10569 - eth0 - 141.85.224.210 - - - 10522 - p2p - 10504 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10669 - eth0 - 141.85.224.210 - - - 10622 - p2p - 10604 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10769 - eth0 - 141.85.224.210 - - - 10722 - p2p - 10704 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10869 - eth0 - 141.85.224.210 - - - 10822 - p2p - 10804 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 - 10969 - eth0 - 141.85.224.210 - - - 10922 - p2p - 10904 - /home/p2p/cs-p2p-next/autorun/server/ - Server.py - - - /home/p2p/p2p-clients/transmission/cli - - - /home/p2p/p2p-clients/hrktorrent - - - /home/p2p/p2p-clients/tribler - - - - - 141.85.224.210 11069 eth0 - 141.85.224.210 + 10.1.04.1 11022 diff --git a/autorun/xml/swarm.xml b/autorun/xml/swarm.xml index 9454eb9..eadd47c 100644 --- a/autorun/xml/swarm.xml +++ b/autorun/xml/swarm.xml @@ -1,1204 +1,124 @@ - /home/p2p/p2p-meta/test.torrent + /home/p2p/export/torrent-files/fedora.torrent 1 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 2 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 3 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 4 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 5 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 6 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 7 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 8 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 9 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out 10 - tribler + hrktorrent 512 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 11 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 12 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 13 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 14 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 15 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 16 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 17 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 18 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 19 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 20 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 21 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 22 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 23 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 24 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 25 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 26 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 27 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 28 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 29 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 30 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 31 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 32 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 33 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 34 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 35 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 36 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 37 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 38 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 39 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 40 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 41 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 42 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 43 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 44 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 45 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 46 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 47 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 48 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 49 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 50 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 51 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 52 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 53 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 54 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 55 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 56 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 57 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 58 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 59 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 60 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 61 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 62 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 63 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 64 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 65 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 66 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 67 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 68 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 69 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 70 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 71 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 72 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 73 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 74 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 75 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 76 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 77 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 78 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 79 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 80 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 81 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 82 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 83 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 84 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 85 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 86 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 87 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 88 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 89 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 90 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 91 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 92 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 93 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 94 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 95 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 96 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 97 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 98 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 99 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out - - - - 100 - tribler - 512 - 256 - /home/p2p/p2p-dld/tribler - /home/p2p/p2p-dld/tribler - tribler-test.log - /home/p2p/p2p-log/tribler - tribler-test.out + /home/p2p/p2p-dld/hrktorrent + /home/p2p/p2p-dld/hrktorrent + hrktorrent-fedora.log + /home/p2p/p2p-log/hrktorrent + hrktorrent-fedora.out -- 2.20.1