From f0ec2d02f77c9589b17eaeccc88dc35f1baa26fa Mon Sep 17 00:00:00 2001 From: ericbsd Date: Sat, 28 Feb 2026 19:14:13 -0400 Subject: [PATCH] Revert "Remove VirtualBox service automation from `setup_virtualbox`" This reverts commit 198c353bad70bd368d416154c6d1ad8114feebf1. --- bin/xconfig | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bin/xconfig b/bin/xconfig index 9ec5e38..e0f2593 100755 --- a/bin/xconfig +++ b/bin/xconfig @@ -781,6 +781,14 @@ setup_nvidia_304() { setup_virtualbox() { log INFO "Setting up VirtualBox environment" + # Enable required rc.conf settings + enable_rc_conf "vboxguest_enable" "YES" + enable_rc_conf "vboxservice_enable" "YES" + + # Start services + start_service_safe "vboxguest" + start_service_safe "vboxservice" + # Remove xorg.conf to allow auto-detection backup_xorg_conf rm -f "$XORG_CONF"