V8.13.272.2025.10.22
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m56s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-10-22 21:35:34 +01:00
parent cc6a47ebc0
commit 640a4ee1cc
7 changed files with 22 additions and 11 deletions

View File

@@ -125,10 +125,10 @@ EOF
fi
apt-get update -qq
apt-get upgrade -y
apt-get autoclean -y
apt-get autopurge -y
apt-get autoremove -y
apt-get dist-upgrade -y # (= apt full-upgrade) allow installs/replacements/removals.
apt-get autoremove --purge -y # 'autopurge' == 'autoremove --purge'; don't run both.
apt-get clean -y # Stronger than autoclean: removes the entire '.deb'-cache.
rm -rf /var/lib/apt/lists/* # shrink image; apt will repopulate on next 'apt update'.
printf "\e[92m++++ ++++ ++++ ++++ ++++ ++++ ++ ✅ '%s' applied successfully. \e[0m\n" "${0}"