21 lines
718 B
Plaintext
21 lines
718 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
# ==============================================================================
|
|
# Home Assistant Add-on: Zabbix agent 2
|
|
# Runs zabbix agent 2
|
|
# ==============================================================================
|
|
declare -a options
|
|
readonly ZBX_CFG_FILE='/config/zabbix_agent2.conf'
|
|
|
|
bashio::log.info 'Starting zabbix-agent2...'
|
|
|
|
if ! bashio::fs.file_exists "${ZBX_CFG_FILE}" || [ -z "$(ls -A ${ZBX_CFG_FILE})" ]; then
|
|
bashio::log.info "No config ${ZBX_CFG_FILE} exists, copying default."
|
|
cp /etc/zabbix/zabbix_agent2.conf ${ZBX_CFG_FILE}
|
|
fi
|
|
|
|
options+=(--foreground)
|
|
options+=(-c /config/zabbix_agent2.conf)
|
|
|
|
exec zabbix_agent2 "${options[@]}"
|