c43a6ab866
- switch logging in job to VERBOSE because we don't want to be printing pointers to the regular session log - switch logging in test to VERBOSE to actually see the messages from the Job - hook the test into the build
40 lines
965 B
C++
40 lines
965 B
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2021 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#include "AutoMountManagementJob.h"
|
|
|
|
#include "utils/Logger.h"
|
|
|
|
AutoMountManagementJob::AutoMountManagementJob( bool disable )
|
|
: m_disable( disable )
|
|
{
|
|
}
|
|
|
|
QString
|
|
AutoMountManagementJob::prettyName() const
|
|
{
|
|
return tr( "Manage auto-mount settings" );
|
|
}
|
|
|
|
Calamares::JobResult
|
|
AutoMountManagementJob::exec()
|
|
{
|
|
Logger::CDebug(Logger::LOGVERBOSE) << "this" << Logger::Pointer( this ) << "value" << Logger::Pointer( m_stored.get() );
|
|
if ( m_stored )
|
|
{
|
|
CalamaresUtils::Partition::automountRestore( m_stored );
|
|
m_stored.reset();
|
|
}
|
|
else
|
|
{
|
|
m_stored = CalamaresUtils::Partition::automountDisable( m_disable );
|
|
}
|
|
return Calamares::JobResult::ok();
|
|
}
|