[luksbootkeyfile] More debugging of the crypt file

This commit is contained in:
Adriaan de Groot 2019-07-04 19:30:11 +02:00
parent 97e44f971d
commit 8a7884d476

View File

@ -120,6 +120,9 @@ generateTargetKeyfile()
cWarning() << "Could not create LUKS keyfile:" << r.getOutput() << "(exit code" << r.getExitCode() << ')'; cWarning() << "Could not create LUKS keyfile:" << r.getOutput() << "(exit code" << r.getExitCode() << ')';
return false; return false;
} }
// Give ample time to check that the file was created correctly
r = CalamaresUtils::System::instance()->targetEnvCommand( { "ls", "-la", "/" } );
cDebug() << "In target system" << r.getOutput();
return true; return true;
} }