From 0e983399f0c4122911328f23de94287ca2894d68 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 20 Apr 2023 18:16:20 +0200 Subject: [PATCH] Add-on support for NET_RAW privileges (#1749) --- docs/add-ons/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/add-ons/configuration.md b/docs/add-ons/configuration.md index 453d6be4..1a4c14d0 100644 --- a/docs/add-ons/configuration.md +++ b/docs/add-ons/configuration.md @@ -21,7 +21,7 @@ addon_name/ ``` :::note -Translation files, `config` and `build` all support `.json`, `.yml` and `.yaml` as the file type. +Translation files, `config` and `build` all support `.json`, `.yml` and `.yaml` as the file type. To keep it simple all examples use `.yaml` ::: @@ -149,7 +149,7 @@ Note: Avoid the use of this filename for anything other than add-on configurati | `hassio_api` | bool | `false` | This add-on can access the Supervisor's REST API. Use `http://supervisor`. | `homeassistant_api` | bool | `false` | This add-on can access the Home Assistant REST API proxy. Use `http://supervisor/core/api`. | `docker_api` | bool | `false` | Allow read-only access to the Docker API for the add-on. Works only for not protected add-ons. -| `privileged` | list | | 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` +| `privileged` | list | | Privilege for access to hardware/system. Available access: `NET_ADMIN`, `NET_RAW`, `SYS_ADMIN`, `SYS_RAWIO`, `SYS_TIME`, `SYS_NICE`, `SYS_RESOURCE`, `SYS_PTRACE`, `SYS_MODULE` or `DAC_READ_SEARCH` | `full_access` | bool | `false` | 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` as this is not needed. | `apparmor` | bool/string | `false` | Enable or disable AppArmor support. If it is enabled, you can also use custom profiles with the name of the profile. | `map` | list | | List of Home Assistant directories to bind mount into your container. 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.