From 9492a1d087b39ca7ca9b99a2d70518f7150e881e Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Fri, 23 Jun 2023 11:48:01 +0200 Subject: [PATCH] update seafile install script and add warning global param --- src/utils/steps_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/steps_utils.py b/src/utils/steps_utils.py index a2fbd26..34cf80c 100644 --- a/src/utils/steps_utils.py +++ b/src/utils/steps_utils.py @@ -138,7 +138,8 @@ def run_steps(linux_machine: LinuxMachine, steps: dict): f"skipping...") continue - logging.info(f"Running step {index + 1}/{len(steps)} for LXC {linux_machine.id}...") + logging.info( + f"Running step {index + 1}/{len(steps)} for LXC {linux_machine.id}...\n {step['warning'] if 'warning' in step else ''}") # Run command step match step['type']: