diff options
author | Ken Moore <moorekou@gmail.com> | 2015-09-09 12:12:50 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-09-09 12:12:50 -0400 |
commit | 049a94d791e84a065eec0ca27e1f40a338b5db52 (patch) | |
tree | 25b8ec5d9b8c02c246e979f2e61c02307f898b4a /libLumina/LuminaOS-OpenBSD.cpp | |
parent | Make sure that drag events only happen with left/right mouse clicks, and clea... (diff) | |
download | lumina-049a94d791e84a065eec0ca27e1f40a338b5db52.tar.gz lumina-049a94d791e84a065eec0ca27e1f40a338b5db52.tar.bz2 lumina-049a94d791e84a065eec0ca27e1f40a338b5db52.zip |
Add a new function to LuminaOS: systemPerformingUpdates()
This returns true if the system is in the middle of applying updates and cannot be powered off at the present time.
Diffstat (limited to 'libLumina/LuminaOS-OpenBSD.cpp')
-rw-r--r-- | libLumina/LuminaOS-OpenBSD.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libLumina/LuminaOS-OpenBSD.cpp b/libLumina/LuminaOS-OpenBSD.cpp index f33fed97..33159454 100644 --- a/libLumina/LuminaOS-OpenBSD.cpp +++ b/libLumina/LuminaOS-OpenBSD.cpp @@ -156,6 +156,11 @@ bool LOS::userHasShutdownAccess(){ return groups.contains("operator"); } +//Check for whether the system is safe to power off (no updates being perfomed) +bool LOS::systemPerformingUpdates(){ + return false; //Not implemented yet +} + //System Shutdown void LOS::systemShutdown(){ //start poweroff sequence QProcess::startDetached("shutdown -p now"); |