]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
nspawn: downgrade log message about usrquota to debug
authorLuca Boccassi <luca.boccassi@gmail.com>
Mon, 20 Jan 2025 19:05:11 +0000 (19:05 +0000)
committerLennart Poettering <lennart@poettering.net>
Mon, 20 Jan 2025 20:16:12 +0000 (21:16 +0100)
This is shown every time nspawn is started, which is annoying
and there's nothing a user can do about it, since it depends on
an extremely new kernel. Downgrade to debug.

Follow-up for 611ae598889471830b2f1d7251c271b79884b1c4

src/nspawn/nspawn-mount.c

index b666a3585ddc96125d26b4c9d9aa04f02c705da2..0f1fff375ce00fbc68e185edd7a739af35c78041 100644 (file)
@@ -711,7 +711,7 @@ int mount_all(const char *dest,
                         if (r < 0)
                                 log_warning_errno(r, "Failed to determine if '%s' supports 'usrquota', assuming it doesn't: %m", m->type);
                         else if (r == 0)
-                                log_info("Kernel doesn't support 'usrquota' on '%s', not including in mount options for '%s'.", m->type, m->where);
+                                log_debug("Kernel doesn't support 'usrquota' on '%s', not including in mount options for '%s'.", m->type, m->where);
                         else {
                                 _cleanup_free_ char *joined = NULL;