From 87224fc89edb2a7ef45e35e5c036e34d79fe523d Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 11 Jan 2022 15:31:37 +0100 Subject: [PATCH] Update 99-run.sh --- webtop/rootfs/etc/cont-init.d/99-run.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webtop/rootfs/etc/cont-init.d/99-run.sh b/webtop/rootfs/etc/cont-init.d/99-run.sh index 6cea01206..13d05cbc8 100644 --- a/webtop/rootfs/etc/cont-init.d/99-run.sh +++ b/webtop/rootfs/etc/cont-init.d/99-run.sh @@ -1,10 +1,13 @@ #!/usr/bin/with-contenv bashio # Uprade -apt-get dist-upgrade &>/dev/null +echo "Updating distribution" +apt-get update &>/dev/null +apt-get upgrade &>/dev/null # 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