mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-06 23:04:20 +01:00
* logging for sshd DEBUG -> INFO * Added version number change for sshd DEBUG -> INFO change * Version adjusted 6.3.1 -> 6.4 * Version adjusted 6.3.1 -> 6.4
41 lines
711 B
JSON
41 lines
711 B
JSON
{
|
|
"name": "SSH server",
|
|
"version": "6.4",
|
|
"slug": "ssh",
|
|
"description": "Allows connections over SSH",
|
|
"url": "https://github.com/home-assistant/hassio-addons/tree/master/ssh",
|
|
"arch": [
|
|
"armhf",
|
|
"armv7",
|
|
"aarch64",
|
|
"amd64",
|
|
"i386"
|
|
],
|
|
"startup": "services",
|
|
"boot": "auto",
|
|
"hassio_api": true,
|
|
"hassio_role": "manager",
|
|
"auto_uart": true,
|
|
"ports": {
|
|
"22/tcp": 22
|
|
},
|
|
"map": [
|
|
"config:rw",
|
|
"ssl:rw",
|
|
"addons:rw",
|
|
"share:rw",
|
|
"backup:rw"
|
|
],
|
|
"options": {
|
|
"authorized_keys": [],
|
|
"password": ""
|
|
},
|
|
"schema": {
|
|
"authorized_keys": [
|
|
"str"
|
|
],
|
|
"password": "str"
|
|
},
|
|
"image": "homeassistant/{arch}-addon-ssh"
|
|
}
|