diff --git a/CHANGELOG.md b/CHANGELOG.md index 30fb765..8137018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ - Removes INFO that SSHPASS is not installed during config, if it's not needed. Redirects user to documentation. - Better error handling of configuration options. - Adds custom port specification to ssh-copy-id command during configuration generation. -- OpenSSH key generation works without user prompts. +- OpenSSH key generation works fewer user prompts. #### 1.7.7 - `config` function will attempt to ping remote host to validate network connection, can by bypassed by adding `PING_AVOID='1'` to your `gravity-sync.conf` file. diff --git a/gravity-sync.sh b/gravity-sync.sh index bf78339..cc1b60f 100755 --- a/gravity-sync.sh +++ b/gravity-sync.sh @@ -985,13 +985,13 @@ function config_generate { MESSAGE="Using Existing ~/${SSH_PKIF}" echo_info else - KEYGEN_COMMAND="ssh-keygen -q -N \"\" -t rsa -f" + KEYGEN_COMMAND="ssh-keygen -N \"\" -t rsa -f" detect_sshkeygen MESSAGE="Generating ~/${SSH_PKIF}" echo_info - MESSAGE="Accept All Defaults" + MESSAGE="Accept All Defaults If Prompted" echo_warn MESSAGE="Complete Key-Pair Creation"