diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-05-28 12:39:38 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-06-07 16:30:51 -0400 |
commit | 45f1386c9adf0e2892306e8949ca71f4a52a8d36 (patch) | |
tree | a9863d1ba612884661db67cc977a9d33c3a1c32c /src/nspawn | |
parent | 0c347259d3b5750caab1a7091cfef592aeff87d2 (diff) |
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.
Diffstat (limited to 'src/nspawn')
-rw-r--r-- | src/nspawn/nspawn.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 19fb086e7a..26ac1bf7df 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"); |