Commit 6f560fd6 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

orchestration exectools.py: remove class HostConfig

parent 2d6ae1a5
...@@ -31,20 +31,6 @@ import typing as tp ...@@ -31,20 +31,6 @@ import typing as tp
from asyncio.subprocess import Process from asyncio.subprocess import Process
class HostConfig(object):
def __init__(self, name, ip, mac, sudopwd, other=None):
if other is None:
other = {}
self.name = name
self.ip = ip
self.used_ip = ip
self.mac = mac
self.sudo_pwd = sudopwd
self.other = other.copy()
class Component(object): class Component(object):
def __init__(self, cmd_parts: tp.List[str], with_stdin=False): def __init__(self, cmd_parts: tp.List[str], with_stdin=False):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment