Files
addons/samba/config.json
Tatham Oddie 70ee4c469b samba: Support link-local IPv6 by default (#1208)
* Support link-local IPv6 by default

This brings the security on IPv6 to be consistent with IPv4 by default

* Update config.json

* Update CHANGELOG.md

* Update config.json

Co-authored-by: Pascal Vizeli <pascal.vizeli@syshack.ch>
2020-04-14 12:12:13 +02:00

31 lines
921 B
JSON

{
"name": "Samba share",
"version": "9.1.0",
"slug": "samba",
"description": "Expose Home Assistant folders with SMB/CIFS",
"url": "https://github.com/home-assistant/hassio-addons/tree/master/samba",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "services",
"boot": "auto",
"init": false,
"host_network": true,
"map": ["config:rw", "ssl:rw", "addons:rw", "share:rw", "backup:rw"],
"options": {
"workgroup": "WORKGROUP",
"username": "homeassistant",
"password": null,
"interface": "",
"allow_hosts": ["10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "fe80::/10"],
"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"
}