13 lines
490 B
Plaintext
13 lines
490 B
Plaintext
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# Start Home Assistant service
|
|
# ==============================================================================
|
|
|
|
cd /config || bashio::exit.nok "Can't find config folder!"
|
|
|
|
# Enable Jemalloc for Home Assistant Core, unless disabled
|
|
if [[ -z "${DISABLE_JEMALLOC+x}" ]]; then
|
|
export LD_PRELOAD="/usr/local/lib/libjemalloc.so.2"
|
|
fi
|
|
exec python3 -m homeassistant --config /config
|