Skip to content
Snippets Groups Projects
Commit e7c5a2b1 authored by Teo Mrnjavac's avatar Teo Mrnjavac
Browse files

Try running fsck twice before giving up.

parent fba8e448
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,8 @@
#include "jobs/CheckFileSystemJob.h"
#include <utils/Logger.h>
// KPMcore
#include <kpmcore/core/partition.h>
#include <kpmcore/fs/filesystem.h>
......@@ -54,11 +56,18 @@ CheckFileSystemJob::exec()
Report report( nullptr );
bool ok = fs.check( report, partition()->partitionPath() );
if ( !ok )
return Calamares::JobResult::error(
tr( "The file system check on partition %1 failed." )
.arg( partition()->partitionPath() ),
report.toText()
);
{
cDebug() << "Filesystem check failed for" << partition()->partitionPath()
<< ", retrying...";
ok = fs.check( report, partition()->partitionPath() );
if ( !ok )
return Calamares::JobResult::error(
tr( "The file system check on partition %1 failed." )
.arg( partition()->partitionPath() ),
report.toText()
);
}
return Calamares::JobResult::ok();
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment