mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
tmpfiles: downgrade warning about duplicate line
This happens occasionally, especially when moving lines between configuration files in different packages, and usually is not a big deal.
This commit is contained in:
parent
751223fecf
commit
e286dbaf9b
@ -2143,7 +2143,7 @@ static int parse_line(const char *fname, unsigned line, const char *buffer, bool
|
|||||||
|
|
||||||
for (n = 0; n < existing->count; n++) {
|
for (n = 0; n < existing->count; n++) {
|
||||||
if (!item_compatible(existing->items + n, &i)) {
|
if (!item_compatible(existing->items + n, &i)) {
|
||||||
log_warning("[%s:%u] Duplicate line for path \"%s\", ignoring.",
|
log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
|
||||||
fname, line, i.path);
|
fname, line, i.path);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user