From: Phaedrus Leeds Date: Wed, 30 Nov 2022 17:42:57 +0000 (-0800) Subject: nspawn: Use "Ctrl-" rather than "^" in info msg X-Git-Tag: v253-rc1~395 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c85c2f7930653d92cc83b1c06cc371b2d38fc977;p=thirdparty%2Fsystemd.git nspawn: Use "Ctrl-" rather than "^" in info msg Maybe most people know that "^]" means "Ctrl + ]" but for those that don't, this should be more clear. --- diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index f86222d1cc6..ea425f009ed 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -5800,7 +5800,7 @@ static int run(int argc, char *argv[]) { arg_quiet = true; if (!arg_quiet) - log_info("Spawning container %s on %s.\nPress ^] three times within 1s to kill container.", + log_info("Spawning container %s on %s.\nPress Ctrl-] three times within 1s to kill container.", arg_machine, arg_image ?: arg_directory); assert_se(sigprocmask_many(SIG_BLOCK, NULL, SIGCHLD, SIGWINCH, SIGTERM, SIGINT, -1) >= 0);