V8.03.832.2025.06.24
All checks were successful
🛡️ Shell Script Linting / 🛡️ Shell Script Linting (push) Successful in 1m36s
🔐 Generating a Private Live ISO FLV 1. / 🔐 Generating a Private Live ISO FLV 1. (push) Successful in 52m52s

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-06-24 21:31:24 +02:00
parent dfd59577b2
commit e8e2fa0182
6 changed files with 14 additions and 10 deletions

View File

@@ -20,6 +20,10 @@ guard_sourcing
check_pkgs() {
apt-get update -y > /dev/null 2>&1
if [[ -z "$(command -v batcat || true)" ]]; then
apt-get install -y --no-install-recommends bat
fi
if [[ -z "$(command -v lsb_release || true)" ]]; then
apt-get install -y --no-install-recommends lsb-release
fi
@@ -45,8 +49,7 @@ check_pkgs() {
fi
if [[ -z "$(command -v mkpasswd || true)" ]]; then
apt-get update -y
apt-get install --no-install-recommends whois -y
apt-get install -y --no-install-recommends whois
fi
}
# vim: number et ts=2 sw=2 sts=2 ai tw=128 ft=sh