mirror of
https://github.com/hassio-addons/addon-vscode.git
synced 2025-05-03 18:51:23 +00:00
🔥 Remove telemetry setting, disable by default
This commit is contained in:
parent
4c2b3d3bb8
commit
400b4a73ad
2 changed files with 2 additions and 8 deletions
|
@ -18,13 +18,11 @@
|
|||
"services": ["mysql:want", "mqtt:want"],
|
||||
"options": {
|
||||
"packages": [],
|
||||
"init_commands": [],
|
||||
"disable_telemetry": false
|
||||
"init_commands": []
|
||||
},
|
||||
"schema": {
|
||||
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
|
||||
"packages": ["str"],
|
||||
"init_commands": ["str"],
|
||||
"disable_telemetry": "bool?"
|
||||
"init_commands": ["str"]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,10 +13,6 @@ options+=(--extra-builtin-extensions-dir "/root/.code-server/extensions/")
|
|||
options+=(--extensions-dir "/data/vscode/extensions")
|
||||
options+=(--host 0.0.0.0)
|
||||
|
||||
if bashio::config.true 'disable_telemetry'; then
|
||||
options+=(--disable-telemetry)
|
||||
fi
|
||||
|
||||
# Disable code authentication, we use HA authentication
|
||||
options+=(--auth none)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue