Files
addons/ssh/config.json
jfette 06328e13fa Adding config option for bash_profile in SSH (#767)
* Adding option for bash_profile

* Bumping version to 7.0, comments for bash_profile

* bash_profile is now a list, updated README and CHANGELOG

* Made .bash_profile a persistent file, using sed to replace token if necessary

* Fixing config.json typo

* Simplifying logic, if statement to update token when necessary

* Moving file perm out of if statement

* File must be created in /data not /root
2019-11-18 18:34:25 +01:00

41 lines
711 B
JSON

{
"name": "SSH server",
"version": "7.0",
"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"
}