Skip to content

Commit

Permalink
Ask for reboot if VBoxManage is not found
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed Nov 7, 2016
1 parent 7931ee0 commit a35eaa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3server/compute/virtualbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def find_vboxmanage(self):
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):
Expand Down

0 comments on commit a35eaa8

Please sign in to comment.