mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
generators: warn but ignore failure to write timeouts
When we failed to split the options (because of disallowed quoting syntax, which might be a bug in its own), we would silently fail. Instead, let's emit a warning. Since we ignore the value if we cannot parse it anyway, let's ignore this error too.
This commit is contained in:
parent
1677b88d01
commit
924f650305
@ -216,8 +216,12 @@ int generator_write_timeouts(
|
||||
r = fstab_filter_options(opts, "comment=systemd.device-timeout\0"
|
||||
"x-systemd.device-timeout\0",
|
||||
NULL, &timeout, filtered);
|
||||
if (r <= 0)
|
||||
return r;
|
||||
if (r < 0) {
|
||||
log_warning_errno(r, "Failed to parse fstab options, ignoring: %m");
|
||||
return 0;
|
||||
}
|
||||
if (r == 0)
|
||||
return 0;
|
||||
|
||||
r = parse_sec_fix_0(timeout, &u);
|
||||
if (r < 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user