From 448b94f701e14a0721f8a54c88f2d08865db3bca Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 23 Apr 2024 17:54:06 +0700 Subject: [PATCH] Add more details to error message when busybox is not installed. Fixes https://github.com/GNS3/gns3-gui/issues/3569 --- gns3server/compute/docker/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/compute/docker/__init__.py b/gns3server/compute/docker/__init__.py index 7a31fb3b..1bcc5b56 100644 --- a/gns3server/compute/docker/__init__.py +++ b/gns3server/compute/docker/__init__.py @@ -88,7 +88,7 @@ class Docker(BaseManager): f"{stdout.decode('utf-8', errors='ignore').strip()}") except OSError as e: raise DockerError(f"Could not install busybox: {e}") - raise DockerError("No busybox executable could be found") + raise DockerError("No busybox executable could be found, please install busybox (apt install busybox-static on Debian/Ubuntu) and make sure it is in your PATH") @staticmethod def resources_path():