From 2fd962dc00a35ebb58884601723a876a68df3888 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 17 Feb 2021 15:57:59 +0100 Subject: [PATCH] Add-on full access (#812) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Joakim Sørensen --- docs/add-ons/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/add-ons/configuration.md b/docs/add-ons/configuration.md index be5c6062..58201251 100644 --- a/docs/add-ons/configuration.md +++ b/docs/add-ons/configuration.md @@ -132,7 +132,7 @@ The configuration for an add-on is stored in `config.json`. | homeassistant_api | bool | no | This add-on can access to the Home Assistant REST API proxy. Use `http://supervisor/core/api`. | docker_api | bool | no | Allow read-only access to Docker API for add-on. Works only for not protected add-ons. | privileged | list | no | Privilege for access to hardware/system. Available access: `NET_ADMIN`, `SYS_ADMIN`, `SYS_RAWIO`, `SYS_TIME`, `SYS_NICE`, `SYS_RESOURCE`, `SYS_PTRACE`, `SYS_MODULE` or `DAC_READ_SEARCH` -| full_access | bool | no | Give full access to hardware like the privileged mode in Docker. Works only for not protected add-ons. +| full_access | bool | no | Give full access to hardware like the privileged mode in Docker. Works only for not protected add-ons. Consider using other add-on options instead of this, like `devices`. If you enable this option, don't add `devices`, `uart`, `usb` or `gpio` this is not needed. | apparmor | bool/string | no | Enable or disable AppArmor support. If it is enable, you can also use custom profiles with the name of the profile. | map | list | no | List of maps for additional Home Assistant folders. Possible values: `config`, `ssl`, `addons`, `backup`, `share` or `media`. Defaults to `ro`, which you can change by adding `:rw` to the end of the name. | environment | dict | no | A dictionary of environment variable to run add-on.