diff --git a/providers/virtualbox/tasks/guest_additions.py b/providers/virtualbox/tasks/guest_additions.py index 5c7958a..06914ad 100644 --- a/providers/virtualbox/tasks/guest_additions.py +++ b/providers/virtualbox/tasks/guest_additions.py @@ -54,11 +54,6 @@ class InstallGuestAdditions(Task): from common.tools import log_call status, out, err = log_call(['chroot', info.root, install_script, '--nox11']) - # Install will exit with $?=1 because X11 isn't installed - if status != 1: - msg = ('VBoxLinuxAdditions.run exited with status {status}, ' - 'it should exit with status 1').format(status=status) - raise TaskError(msg) log_call(['chroot', info.root, 'service', 'vboxadd-service', 'stop']) root.remove_mount(mount_path)