From 702caae41b722d05c754745d123a9e54dd576405 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Fri, 13 Dec 2019 11:04:27 +0100 Subject: [PATCH] Update Hass.io CLI to 3.1.1 (#884) --- ssh/CHANGELOG.md | 4 ++++ ssh/README.md | 2 +- ssh/build.json | 2 +- ssh/config.json | 22 ++++------------------ 4 files changed, 10 insertions(+), 20 deletions(-) diff --git a/ssh/CHANGELOG.md b/ssh/CHANGELOG.md index 33c02f3..fe80706 100644 --- a/ssh/CHANGELOG.md +++ b/ssh/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 7.1 + +- Update Hass.io CLI to 3.1.1 + ## 7.0 - Added bash_profile as a persistent file diff --git a/ssh/README.md b/ssh/README.md index 2e43a22..ede5554 100644 --- a/ssh/README.md +++ b/ssh/README.md @@ -35,7 +35,7 @@ simply disable password login. 1. Add a ssh key to `authorized_keys` or set a `password` in the add-on configuration. 2. Start the add-on. -3. Connect to your device using your preferred SSH client and use `root` as +3. Connect to your device using your preferred SSH client and use `root` as the username. After logging in, you will find yourself in this add-on’s container. diff --git a/ssh/build.json b/ssh/build.json index 6879341..ea5f83c 100644 --- a/ssh/build.json +++ b/ssh/build.json @@ -7,6 +7,6 @@ "aarch64": "homeassistant/aarch64-base:3.10" }, "args": { - "CLI_VERSION": "3.1.0" + "CLI_VERSION": "3.1.1" } } diff --git a/ssh/config.json b/ssh/config.json index c211c31..d89f7a7 100644 --- a/ssh/config.json +++ b/ssh/config.json @@ -1,16 +1,10 @@ { "name": "SSH server", - "version": "7.0", + "version": "7.1", "slug": "ssh", "description": "Allows connections over SSH", "url": "https://github.com/home-assistant/hassio-addons/tree/master/ssh", - "arch": [ - "armhf", - "armv7", - "aarch64", - "amd64", - "i386" - ], + "arch": ["armhf", "armv7", "aarch64", "amd64", "i386"], "startup": "services", "boot": "auto", "hassio_api": true, @@ -19,21 +13,13 @@ "ports": { "22/tcp": 22 }, - "map": [ - "config:rw", - "ssl:rw", - "addons:rw", - "share:rw", - "backup:rw" - ], + "map": ["config:rw", "ssl:rw", "addons:rw", "share:rw", "backup:rw"], "options": { "authorized_keys": [], "password": "" }, "schema": { - "authorized_keys": [ - "str" - ], + "authorized_keys": ["str"], "password": "str" }, "image": "homeassistant/{arch}-addon-ssh"