Skip to content

Commit

Permalink
Add more details to error message when busybox is not installed. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Apr 23, 2024
1 parent 18002a7 commit 448b94f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3server/compute/docker/__init__.py
Expand Up @@ -88,7 +88,7 @@ async def install_busybox(dst_dir):
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():
Expand Down

0 comments on commit 448b94f

Please sign in to comment.