From d6e385390da7c26aa9d6e521aa84dd67e507cccc Mon Sep 17 00:00:00 2001 From: librelad Date: Tue, 2 Jun 2026 14:56:27 +0100 Subject: [PATCH] feat(rootless): show progress notice before apt-get install The 'Installing System Requirements' step ran apt-get install with no output until checkSuccess reported afterwards, so it looked frozen while packages were being fetched. Print a notice up front. Co-Authored-By: Claude Opus 4.8 --- scripts/docker/install/rootless/rootless_docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/docker/install/rootless/rootless_docker.sh b/scripts/docker/install/rootless/rootless_docker.sh index 3e267c7..3c2932d 100755 --- a/scripts/docker/install/rootless/rootless_docker.sh +++ b/scripts/docker/install/rootless/rootless_docker.sh @@ -16,6 +16,7 @@ installDockerRootless() local docker_install_user_id=$(id -u "$CFG_DOCKER_INSTALL_USER") local docker_install_bashrc="/home/$CFG_DOCKER_INSTALL_USER/.bashrc" + isNotice "Fetching and installing the necessary packages...this may take a moment..." local result; result=$(runSystem apt-get install -y apt-transport-https ca-certificates curl gnupg software-properties-common uidmap dbus-user-session fuse-overlayfs passt) checkSuccess "Installing necessary packages"