24 lines
780 B
Plaintext
24 lines
780 B
Plaintext
#!/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
|