feat: add vector addon

This commit is contained in:
2025-04-24 16:09:33 +03:00
parent 7a3f002d85
commit 3b435e53f0
15 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#!/command/with-contenv bashio
# shellcheck shell=bash
# shellcheck disable=SC2207
# ==============================================================================
# Home Assistant Add-on: Vector
# Copy default config
# ==============================================================================
CONFIG_PATH="/config/vector.yaml"
DEFAULT_CONFIG="/vector.yaml"
if ! bashio::fs.file_exists "$CONFIG_PATH"; then
bashio::log.info "Copying default configuration from $DEFAULT_CONFIG"
if cp "$DEFAULT_CONFIG" "$CONFIG_PATH"; then
bashio::log.info "Default configuration copied successfully"
else
bashio::log.error "Failed to copy default configuration!"
exit 1
fi
else
bashio::log.info "Using existing configuration at $CONFIG_PATH"
fi