From a5cfbb318154b045710855071516d652876a9417 Mon Sep 17 00:00:00 2001 From: Gergely Imreh Date: Mon, 11 Mar 2019 15:24:12 +0000 Subject: [PATCH] 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 --- doc/cli.markdown | 2 +- lib/actions/command-options.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/cli.markdown b/doc/cli.markdown index 38ce19a2..eea84411 100644 --- a/doc/cli.markdown +++ b/doc/cli.markdown @@ -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 diff --git a/lib/actions/command-options.ts b/lib/actions/command-options.ts index 7f587301..7385021e 100644 --- a/lib/actions/command-options.ts +++ b/lib/actions/command-options.ts @@ -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', };