From: Zbigniew Jędrzejewski-Szmek Date: Wed, 28 May 2014 16:39:38 +0000 (-0400) Subject: nspawn: split long message into two lines X-Git-Tag: v214~43 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=45f1386c9adf0e2892306e8949ca71f4a52a8d36;p=elogind.git nspawn: split long message into two lines For names like /var/lib/container/something, the message becomes quite long. Better to split it. Also reword the message not to suggest that ^]^]^] only works in the beginning. --- diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 19fb086e7..26ac1bf7d 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -2787,7 +2787,8 @@ int main(int argc, char *argv[]) { } if (!arg_quiet) - log_info("Spawning container %s on %s. Press ^] three times within 1s to abort execution.", arg_machine, arg_image ? arg_image : arg_directory); + log_info("Spawning container %s on %s.\nPress ^] three times within 1s to kill container.", + arg_machine, arg_image ? arg_image : arg_directory); if (unlockpt(master) < 0) { log_error("Failed to unlock tty: %m");