ssh: correct the minimum OS version that allows host OS connection

Since openBalena API v0.11.0 (downstream API 9.16.0) the minimum
OS version has been lowered from 2.7.5 to 2.0.0 for host OS access.

Change-type: patch
Signed-off-by: Gergely Imreh <imrehg@gmail.com>
This commit is contained in:
Gergely Imreh 2019-03-11 15:24:12 +00:00
parent 119a630643
commit a5cfbb3181
No known key found for this signature in database
GPG Key ID: 2159E9E41D38A9EB
2 changed files with 2 additions and 2 deletions

View File

@ -988,7 +988,7 @@ increase verbosity
#### --host, -s
access host OS (for devices with balenaOS >= 2.7.5)
access host OS (for devices with balenaOS >= 2.0.0+rev1)
#### --noproxy

View File

@ -142,6 +142,6 @@ export const advancedConfig = {
export const hostOSAccess = {
signature: 'host',
boolean: true,
description: 'access host OS (for devices with balenaOS >= 2.7.5)',
description: 'access host OS (for devices with balenaOS >= 2.0.0+rev1)',
alias: 's',
};