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:
Zbigniew Jędrzejewski-Szmek 2017-11-22 14:19:13 +01:00
parent 751223fecf
commit e286dbaf9b
1 changed files with 2 additions and 2 deletions

View File

@ -2143,8 +2143,8 @@ static int parse_line(const char *fname, unsigned line, const char *buffer, bool
for (n = 0; n < existing->count; n++) {
if (!item_compatible(existing->items + n, &i)) {
log_warning("[%s:%u] Duplicate line for path \"%s\", ignoring.",
fname, line, i.path);
log_notice("[%s:%u] Duplicate line for path \"%s\", ignoring.",
fname, line, i.path);
return 0;
}
}