Mercurial > trustbridge
view ui/processhelp_linux.cpp @ 648:e41a2537b84d
Implement root installation
We now iterate over all users that do not obviously have their
login shell disabled and look for NSS directories in their home
directory, dropping our privileges to do so.
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 25 Jun 2014 12:44:47 +0200 |
parents | cfef809b890d |
children | 20ca94680003 |
line wrap: on
line source
/* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=2) * and comes with ABSOLUTELY NO WARRANTY! * See LICENSE.txt for details. */ #ifndef WIN32 #include "processhelp.h" const QList<int> ProcessHelp::getProcessesIdForName(const QString &processName) { // TODO Q_UNUSED(processName); return QList<int>(); } bool ProcessHelp::otherProcessesExist(const QString &processName) { // TODO Q_UNUSED(processName); return false; } void ProcessHelp::activateWindowForProcess(const QString &executableName) { // TODO Q_UNUSED(executableName); return; } #endif /* Not WIN32 */