[machineid] Follow Manjaro flags

- add -f to ln(1) flags
This commit is contained in:
Adriaan de Groot 2020-02-07 20:31:15 +01:00
parent 110a84344b
commit 3e2908ea16

View File

@ -181,7 +181,7 @@ Calamares::JobResult
createDBusLink( const QString& rootMountPoint, const QString& fileName, const QString& systemdFileName ) createDBusLink( const QString& rootMountPoint, const QString& fileName, const QString& systemdFileName )
{ {
Q_UNUSED( rootMountPoint ) Q_UNUSED( rootMountPoint )
return runCmd( QStringList { QStringLiteral( "ln" ), QStringLiteral( "-s" ), systemdFileName, fileName } ); return runCmd( QStringList { QStringLiteral( "ln" ), QStringLiteral( "-sf" ), systemdFileName, fileName } );
} }
} // namespace MachineId } // namespace MachineId