From a35eaa8e6029f44ad132a1f7860a4becbc389f1b Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Mon, 7 Nov 2016 15:49:25 +0100 Subject: [PATCH] Ask for reboot if VBoxManage is not found --- gns3server/compute/virtualbox/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/compute/virtualbox/__init__.py b/gns3server/compute/virtualbox/__init__.py index fcf40ea3..b8de6d2a 100644 --- a/gns3server/compute/virtualbox/__init__.py +++ b/gns3server/compute/virtualbox/__init__.py @@ -72,7 +72,7 @@ class VirtualBox(BaseManager): vboxmanage_path = shutil.which(vboxmanage_path) if not vboxmanage_path: - raise VirtualBoxError("Could not find VBoxManage") + raise VirtualBoxError("Could not find VBoxManage if you just install VirtualBox you need to reboot") if not os.path.isfile(vboxmanage_path): raise VirtualBoxError("VBoxManage {} is not accessible".format(vboxmanage_path)) if not os.access(vboxmanage_path, os.X_OK):