mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-10 00:34:22 +01:00
* Add support for Samba veto files * Clean up if statement per review * Update CHANGELOG.md
56 lines
981 B
JSON
56 lines
981 B
JSON
{
|
|
"name": "Samba share",
|
|
"version": "9.0",
|
|
"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"
|
|
],
|
|
"veto_files": [
|
|
"._*",
|
|
".DS_Store",
|
|
"Thumbs.db",
|
|
"icon?",
|
|
".Trashes"
|
|
]
|
|
},
|
|
"schema": {
|
|
"workgroup": "str",
|
|
"username": "str",
|
|
"password": "str",
|
|
"interface": "str",
|
|
"allow_hosts": [
|
|
"str"
|
|
],
|
|
"veto_files": [
|
|
"str"
|
|
]
|
|
},
|
|
"image": "homeassistant/{arch}-addon-samba"
|
|
}
|