mirror of
https://github.com/systemd/systemd.git
synced 2026-08-06 08:00:57 +00:00
cryptsetup: Fix timeout on dm device.
Fix a bug in systemd-cryptsetup-generator which caused the drop-in setting the job timeout for the dm device unit to be written with a name different than the unit name. https://bugs.freedesktop.org/show_bug.cgi?id=84409
This commit is contained in:
committed by
Lennart Poettering
parent
a2726e5ced
commit
a6fb0dc138
Notes:
Lennart Poettering
2014-10-27 13:23:27 +01:00
Backport: bugfix
@@ -246,7 +246,12 @@ static int create_disk(
|
||||
}
|
||||
|
||||
if (!noauto && !nofail) {
|
||||
r = write_drop_in(arg_dest, name, 90, "device-timeout",
|
||||
_cleanup_free_ char *dmname;
|
||||
dmname = strjoin("dev-mapper-", e, ".device", NULL);
|
||||
if (!dmname)
|
||||
return log_oom();
|
||||
|
||||
r = write_drop_in(arg_dest, dmname, 90, "device-timeout",
|
||||
"# Automatically generated by systemd-cryptsetup-generator \n\n"
|
||||
"[Unit]\nJobTimeoutSec=0");
|
||||
if (r < 0) {
|
||||
|
||||
Reference in New Issue
Block a user