Files
addons/samba/config.json
Zapfmeister 4ae58927ce Update samba add-on to use Bashio #735 (#750)
* Update samba add-on to use Bashio #735

* Updated info log entry for allowed hosts

* Shellcheck update

* Remove old configpath

* Fix for ALLOW_HOSTS issue

* Code optimization using bashio commands. Removing debug line.

* Error Log update and removal of legacy code

* 🚑 Fixes bashio nok exit call

Signed-off-by: Franck Nijhof <frenck@addons.community>
2019-10-08 00:19:53 +02:00

32 lines
778 B
JSON

{
"name": "Samba share",
"version": "8.2",
"slug": "samba",
"description": "Expose Hass.io folders with SMB/CIFS",
"url": "https://home-assistant.io/addons/samba/",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "services",
"boot": "auto",
"host_network": true,
"map": ["config:rw", "ssl:rw", "addons:rw", "share:rw", "backup:rw"],
"options": {
"workgroup": "WORKGROUP",
"username": "hassio",
"password": null,
"interface": "",
"allow_hosts": [
"10.0.0.0/8",
"172.16.0.0/12",
"192.168.0.0/16"
]
},
"schema": {
"workgroup": "str",
"username": "str",
"password": "str",
"interface": "str",
"allow_hosts": ["str"]
},
"image": "homeassistant/{arch}-addon-samba"
}