Skip to content

Commit

Permalink
Update Hass.io CLI to 3.1.1 (home-assistant#884)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Dec 13, 2019
1 parent c6cea37 commit 702caae
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 20 deletions.
4 changes: 4 additions & 0 deletions ssh/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 7.1

- Update Hass.io CLI to 3.1.1

## 7.0

- Added bash_profile as a persistent file
Expand Down
2 changes: 1 addition & 1 deletion ssh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion ssh/build.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"aarch64": "homeassistant/aarch64-base:3.10"
},
"args": {
"CLI_VERSION": "3.1.0"
"CLI_VERSION": "3.1.1"
}
}
22 changes: 4 additions & 18 deletions ssh/config.json
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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"
Expand Down

0 comments on commit 702caae

Please sign in to comment.