17 lines
519 B
Bash
17 lines
519 B
Bash
#!/usr/bin/with-contenv bashio
|
|
# ==============================================================================
|
|
# SSH install additional packages on startup
|
|
# ==============================================================================
|
|
|
|
if ! bashio::config.has_value "apks"; then
|
|
bashio::exit.ok
|
|
fi
|
|
|
|
apk update \
|
|
|| bashio::exit.nok "Failed updating Alpine packages indexes"
|
|
|
|
for package in $(bashio::config "apks"); do
|
|
apk add "$package" \
|
|
|| bashio::exit.nok "Failed installing ${package}"
|
|
done
|