SSH: Enables auto mapping of all UART/Serial devices (#506)

* Enabled auto mapping of all UART/Serial devices

* Update config.json

* Update CHANGELOG.md
This commit is contained in:
Franck Nijhof
2019-01-18 13:34:42 +01:00
committed by Pascal Vizeli
parent 5e78babf0a
commit b3e38d246d
2 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
# Changelog # Changelog
## 5.1
- Map all serial devices into container for manual adjustments
## 5.0 ## 5.0
- Update Hass.io CLI to 2.0.1, include bash completion - Update Hass.io CLI to 2.0.1, include bash completion

View File

@@ -1,6 +1,6 @@
{ {
"name": "SSH server", "name": "SSH server",
"version": "5.0", "version": "5.1",
"slug": "ssh", "slug": "ssh",
"description": "Allows connections over SSH", "description": "Allows connections over SSH",
"url": "https://home-assistant.io/addons/ssh/", "url": "https://home-assistant.io/addons/ssh/",
@@ -8,6 +8,7 @@
"boot": "auto", "boot": "auto",
"hassio_api": true, "hassio_api": true,
"hassio_role": "manager", "hassio_role": "manager",
"auto_uart": true,
"ports": { "ports": {
"22/tcp": 22 "22/tcp": 22
}, },