🎉 Release of add-on SSH v2.0.0

This commit is contained in:
Franck Nijhof 2017-10-20 17:04:28 +02:00
parent 7e6b5e0881
commit 688e4a9720
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3

View file

@ -1,13 +1,14 @@
{
"name": "SSH - Secure Shell",
"version": "1.0.3",
"version": "2.0.0",
"slug": "ssh",
"description": "Allows SSH connections to your Home Assistant instance",
"url": "https://github.com/hassio-addons/addon-ssh",
"startup": "services",
"boot": "auto",
"host_network": true,
"hassio_api": true,
"homeassistant_api": true,
"host_network": true,
"map": [
"config:rw",
"ssl:rw",
@ -16,24 +17,29 @@
"backup:rw"
],
"options": {
"debug": false,
"log_level": "info",
"port": 22,
"username": "hass",
"username": "hassio",
"password": "",
"authorized_keys": [],
"sftp": false,
"compatibility_mode": false,
"packages": [],
"init_commands": []
},
"schema": {
"debug": "bool",
"port": "int",
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"port": "port",
"username": "str",
"password": "str",
"authorized_keys": ["str"],
"sftp": "bool",
"compatibility_mode": "bool",
"packages": ["str"],
"init_commands": ["str"]
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
},
"image": "hassioaddons/ssh-{arch}"
}