This commit is contained in:
Michael Stanclift 2020-06-03 13:58:58 -05:00
parent be2881d629
commit 23f390f4ab
2 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@
- Removes INFO that SSHPASS is not installed during config, if it's not needed. Redirects user to documentation. - Removes INFO that SSHPASS is not installed during config, if it's not needed. Redirects user to documentation.
- Better error handling of configuration options. - Better error handling of configuration options.
- Adds custom port specification to ssh-copy-id command during configuration generation. - 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 #### 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. - `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.

View File

@ -985,13 +985,13 @@ function config_generate {
MESSAGE="Using Existing ~/${SSH_PKIF}" MESSAGE="Using Existing ~/${SSH_PKIF}"
echo_info echo_info
else else
KEYGEN_COMMAND="ssh-keygen -q -N \"\" -t rsa -f" KEYGEN_COMMAND="ssh-keygen -N \"\" -t rsa -f"
detect_sshkeygen detect_sshkeygen
MESSAGE="Generating ~/${SSH_PKIF}" MESSAGE="Generating ~/${SSH_PKIF}"
echo_info echo_info
MESSAGE="Accept All Defaults" MESSAGE="Accept All Defaults If Prompted"
echo_warn echo_warn
MESSAGE="Complete Key-Pair Creation" MESSAGE="Complete Key-Pair Creation"