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

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-06-17 18:26:21 +02:00
parent 2f25ad8e31
commit c7d5407119

View File

@@ -16,6 +16,22 @@
# None # None
####################################### #######################################
check_pkgs() { check_pkgs() {
if [[ -z "$(command -v lsb_release || true)" ]]; then
apt-get update -y
apt-get install --no-install-recommends lsb-release -y
fi
if [[ -z "$(command -v debootstrap || true)" ]]; then
if grep -RqsE '^[[:space:]]*deb .*backports' /etc/apt/sources.list /etc/apt/sources.list.d; then
apt-get update -y
# shellcheck disable=SC2155
declare codename=$(lsb_release -sc)
apt-get -t "${codename}-backports" install debootstrap -y
else
apt-get install debootstrap -y
fi
fi
if [[ ! -f /usr/share/live/build/VERSION ]]; then if [[ ! -f /usr/share/live/build/VERSION ]]; then
apt-get update -y apt-get update -y
apt-get install live-build -y apt-get install live-build -y