Ask for reboot if VBoxManage is not found

pull/774/head
Julien Duponchelle 8 years ago
parent 7931ee01b3
commit a35eaa8e60
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -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):

Loading…
Cancel
Save