From 03ded21318a57f45bb80cf4d272acbc2469a0af2 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 25 Feb 2016 15:27:49 -0500 Subject: Remove the "-o" options from the reboot/shutdown commands in Lumina - this bypasses the PC-BSD update system on 11.x --- libLumina/LuminaOS-FreeBSD.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libLumina/LuminaOS-FreeBSD.cpp b/libLumina/LuminaOS-FreeBSD.cpp index 310341f6..530ee5f0 100644 --- a/libLumina/LuminaOS-FreeBSD.cpp +++ b/libLumina/LuminaOS-FreeBSD.cpp @@ -197,12 +197,12 @@ bool LOS::systemPerformingUpdates(){ //System Shutdown void LOS::systemShutdown(){ //start poweroff sequence - QProcess::startDetached("shutdown -po now"); + QProcess::startDetached("shutdown -p now"); } //System Restart void LOS::systemRestart(){ //start reboot sequence - QProcess::startDetached("shutdown -ro now"); + QProcess::startDetached("shutdown -r now"); } //Check for suspend support -- cgit