]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
ssh-generator: silence "Binding to socket" messages
authorMantas Mikulėnas <grawity@gmail.com>
Tue, 12 Nov 2024 08:30:09 +0000 (10:30 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 28 Nov 2024 14:04:37 +0000 (15:04 +0100)
(cherry picked from commit 2424a67c02913eac30b5d59f1e5ee39a846ca54b)

src/ssh-generator/ssh-generator.c

index c671b4170336686da48741375090035329ddd5b8..9894997774e01162d9775494d1532690e228a18d 100644 (file)
@@ -245,8 +245,8 @@ static int add_vsock_socket(
         if (r < 0)
                 return r;
 
-        log_info("Binding SSH to AF_VSOCK vsock::22.\n"
-                 "→ connect via 'ssh vsock/%u' from host", local_cid);
+        log_debug("Binding SSH to AF_VSOCK vsock::22.\n"
+                  "→ connect via 'ssh vsock/%u' from host", local_cid);
         return 0;
 }
 
@@ -280,9 +280,8 @@ static int add_local_unix_socket(
         if (r < 0)
                 return r;
 
-
-        log_info("Binding SSH to AF_UNIX socket /run/ssh-unix-local/socket.\n"
-                 "→ connect via 'ssh .host' locally");
+        log_debug("Binding SSH to AF_UNIX socket /run/ssh-unix-local/socket.\n"
+                  "→ connect via 'ssh .host' locally");
         return 0;
 }
 
@@ -337,8 +336,8 @@ static int add_export_unix_socket(
         if (r < 0)
                 return r;
 
-        log_info("Binding SSH to AF_UNIX socket /run/host/unix-export/ssh\n"
-                 "→ connect via 'ssh unix/run/systemd/nspawn/unix-export/\?\?\?/ssh' from host");
+        log_debug("Binding SSH to AF_UNIX socket /run/host/unix-export/ssh\n"
+                  "→ connect via 'ssh unix/run/systemd/nspawn/unix-export/\?\?\?/ssh' from host");
 
         return 0;
 }
@@ -388,7 +387,7 @@ static int add_extra_sockets(
                 if (r < 0)
                         return r;
 
-                log_info("Binding SSH to socket %s.", *i);
+                log_debug("Binding SSH to socket %s.", *i);
                 n++;
         }
 
@@ -464,7 +463,7 @@ static int run(const char *dest, const char *dest_early, const char *dest_late)
         _cleanup_free_ char *sshd_binary = NULL;
         r = find_executable("sshd", &sshd_binary);
         if (r == -ENOENT) {
-                log_info("Disabling SSH generator logic, since sshd is not installed.");
+                log_debug("Disabling SSH generator logic, since sshd is not installed.");
                 return 0;
         }
         if (r < 0)