From 4f1baf687278e806206b9e98b04b4e3e23b788fc Mon Sep 17 00:00:00 2001 From: Pelle Windestam Date: Fri, 2 Oct 2020 08:00:09 +0200 Subject: [PATCH] virtualbox-ose: make vboxservice depend on dbus vboxservice will give an error message if dbus is not started. We should check that dbus is running before starting the service. --- srcpkgs/virtualbox-ose/files/vboxservice/run | 1 + 1 file changed, 1 insertion(+) diff --git a/srcpkgs/virtualbox-ose/files/vboxservice/run b/srcpkgs/virtualbox-ose/files/vboxservice/run index 6332cc9f13a..92311ba7ca1 100755 --- a/srcpkgs/virtualbox-ose/files/vboxservice/run +++ b/srcpkgs/virtualbox-ose/files/vboxservice/run @@ -1,2 +1,3 @@ #!/bin/sh +sv check dbus >/dev/null || exit 1 exec VBoxService -f