From: Jeff Atwood Date: Thu, 8 May 2014 07:25:29 +0000 (-0700) Subject: clarify language about SSH key generation X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=8aca5cb7b9be72a38c6e21fe57b96982fc39ecaa;p=discourse_docker.git clarify language about SSH key generation --- 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.