16 lines
470 B
Plaintext
Executable File
16 lines
470 B
Plaintext
Executable File
#!/command/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Grafana
|
|
# Runs the memcached Server
|
|
# ==============================================================================
|
|
declare -a options
|
|
|
|
bashio::log.info 'Starting Memcached...'
|
|
|
|
options+=(-l 127.0.0.1)
|
|
options+=(-m 32)
|
|
|
|
# Run Memcached
|
|
exec s6-setuidgid memcache /usr/bin/memcached "${options[@]}"
|