From 78fc0d15ccc5a6fe6a2f56b02602a61afccb708d Mon Sep 17 00:00:00 2001 From: Josh Curl Date: Thu, 30 Jun 2016 14:02:04 -0700 Subject: [PATCH] Update console switch warning --- cmd/control/console.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cmd/control/console.go b/cmd/control/console.go index b9ead261..d4521331 100644 --- a/cmd/control/console.go +++ b/cmd/control/console.go @@ -58,8 +58,10 @@ func consoleSwitch(c *cli.Context) error { if !c.Bool("force") { in := bufio.NewReader(os.Stdin) - fmt.Println("Switching consoles will destroy the current console container and restart Docker.") - fmt.Println("Note: You will also be logged out.") + fmt.Println(`Switching consoles will +1. destroy the current console container +2. log you out +3. restart Docker`) if !yes(in, "Continue") { return nil }