mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-11-16 16:54:51 +02:00
Add more details to error message when busybox is not installed. Fixes https://github.com/GNS3/gns3-gui/issues/3569
This commit is contained in:
parent
18002a7580
commit
448b94f701
@ -88,7 +88,7 @@ class Docker(BaseManager):
|
|||||||
f"{stdout.decode('utf-8', errors='ignore').strip()}")
|
f"{stdout.decode('utf-8', errors='ignore').strip()}")
|
||||||
except OSError as e:
|
except OSError as e:
|
||||||
raise DockerError(f"Could not install busybox: {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
|
@staticmethod
|
||||||
def resources_path():
|
def resources_path():
|
||||||
|
Loading…
Reference in New Issue
Block a user