Files
hassio-addons/webtop/rootfs/etc/cont-init.d/99-run.sh
2022-01-12 06:56:21 +01:00

31 lines
1.1 KiB
Bash

#!/usr/bin/with-contenv bashio
# Uprade
echo "Updating distribution"
apt-get update >/dev/null
apt-get -y upgrade >/dev/null || true
# Fix mate software center
if [ -f /usr/lib/dbus-1.0/dbus-daemon-launch-helper ]; then
echo "Allow software center"
chmod u+s /usr/lib/dbus-1.0/dbus-daemon-launch-helper
service dbus restart
fi
# Spotify source
curl -sS https://download.spotify.com/debian/pubkey_5E3C45D7B312C643.gpg | sudo apt-key add -
echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/SPOTIFY.LIST
# Install specific apps
if bashio::config.has_value 'additional_apps'; then
bashio::log.info "Installing additional apps :"
# Install apps
for APP in $(echo "$(bashio::config 'additional_apps')" | tr "," " "); do
bashio::log.green "... $APP"
# Test install with both apt-get and snap
apt-get install -yqq $APP &>/dev/null \
&& bashio::log.green "... done" \
|| bashio::log.red "... not successful, please check package name"
done
fi