diff --git a/CHANGELOG.md b/CHANGELOG.md index aab5319..f900441 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ **Known Issues** - No new Star Trek references. +#### 1.7.6 +- Detects `dbclient` install as alternative to OpenSSH Client. (DietPi) +- Attempts to install OpenSSH Client if not found, and Dropbear is not alternative. (DietPi) + #### 1.7.5 - No code changes! - Primary README now only reflect "The Easy Way" to install and configure Gravity Sync diff --git a/gravity-sync.sh b/gravity-sync.sh index 8ec52c8..88ec801 100755 --- a/gravity-sync.sh +++ b/gravity-sync.sh @@ -662,7 +662,7 @@ function detect_ssh { echo_fail MESSAGE="Attempting to Compensate" echo_info - if hash dbclient > 2>/dev/null + if hash dbclient 2>/dev/null then SSH_CMD='dbclient' MESSAGE="Using Dropbear Instead"