From 78356ec7e15dc95458d6ab7ff97f787f025eea13 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 3 Aug 2022 14:34:28 -0400 Subject: [PATCH] Island: Add TODO about Deployment and initialize_services() --- monkey/monkey_island/cc/services/initialize.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/monkey/monkey_island/cc/services/initialize.py b/monkey/monkey_island/cc/services/initialize.py index e83ce4441..f8056cebc 100644 --- a/monkey/monkey_island/cc/services/initialize.py +++ b/monkey/monkey_island/cc/services/initialize.py @@ -153,6 +153,8 @@ def _log_agent_binary_hashes(agent_binary_repository: IAgentBinaryRepository): logger.info(f"{os} agent: SHA-256 hash: {binary_sha256_hash}") +# TODO: The deployment should probably be passed into initialize_services(), but we can rework that +# when we refactor this file. def _get_depyloyment_from_file(file_path: Path) -> Deployment: try: with open(file_path, "r") as deployment_info_file: