From 8aca5cb7b9be72a38c6e21fe57b96982fc39ecaa Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Thu, 8 May 2014 00:25:29 -0700 Subject: [PATCH] clarify language about SSH key generation --- launcher | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/launcher b/launcher index b941c16..4a92135 100755 --- a/launcher +++ b/launcher @@ -115,9 +115,8 @@ fi get_ssh_pub_key() { if tty -s ; then if [[ ! -e ~/.ssh/id_rsa.pub && ! -e ~/.ssh/id_dsa.pub ]] ; then - echo You have no SSH key associated to this profile - echo "(This will allow you ssh access into your container)" - read -p "Generate SSH key at ~/.ssh/id_rsa.pub? (Y/n) " -n 1 -r + echo "This user has no SSH key, but a SSH key is required to access the Discourse Docker container." + read -p "Generate a SSH key? (Y/n) " -n 1 -r if [[ $REPLY =~ ^[Nn]$ ]] ; then echo echo WARNING: You may not be able to log in to your container. -- 2.25.1