From: Zbigniew Jędrzejewski-Szmek Date: Wed, 22 Nov 2017 13:19:13 +0000 (+0100) Subject: tmpfiles: downgrade warning about duplicate line X-Git-Tag: v236~54^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e286dbaf9bce7445a03acec9e0d814ee613cc39a;p=thirdparty%2Fsystemd.git 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. --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 4e615288da4..7061b2fefb9 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -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; } }