Update Hass.io CLI to 3.1.1 (#884)

This commit is contained in:
Franck Nijhof
2019-12-13 11:04:27 +01:00
committed by GitHub
parent c6cea37fa8
commit 702caae41b
4 changed files with 10 additions and 20 deletions

View File

@@ -1,5 +1,9 @@
# Changelog
## 7.1
- Update Hass.io CLI to 3.1.1
## 7.0
- Added bash_profile as a persistent file

View File

@@ -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-ons container.

View File

@@ -7,6 +7,6 @@
"aarch64": "homeassistant/aarch64-base:3.10"
},
"args": {
"CLI_VERSION": "3.1.0"
"CLI_VERSION": "3.1.1"
}
}

View File

@@ -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"