# Copyright 2021 Florian Fischer
"""Common global variables"""

import platform
from pathlib import Path

ROOT_DIR = Path(__file__).parents[1]
EMPER_CLIENT_DIR = ROOT_DIR / 'emper-client'
CLIENTS_DIR = ROOT_DIR / 'clients'

TERMINATION_TIME = 10
"""Timeout used for awaiting termination of subprocesses"""

HOSTNAME = platform.node()

KILL_CMD = 'pkill -9 -f {proc}'
"""Command used to kill ot terminating subprocesses"""