cloudron-setup: fix the echo

This commit is contained in:
Girish Ramakrishnan
2026-02-06 12:10:09 +01:00
parent f8a44014f7
commit 84374f03e9

View File

@@ -20,10 +20,9 @@ run_apt_get() {
for count in {1..5}; do
# we used to check for locks, but there are many locks it seems
while pgrep -x "apt-get|apt|dpkg" >/dev/null; do
echo -n "=> Waiting for existing apt/dpkg processes to finish..."
echo "=> Waiting for 30s for existing apt/dpkg processes to finish..."
sleep 30
done
echo ""
if DEBIAN_FRONTEND=noninteractive apt-get "$@" &>> "${LOG_FILE}"; then
success=true