live-iso-kde/chroot_scripts/2-install-live-lists.sh
ferreo da5264529c
All checks were successful
Release Nest NVIDIA amd64-v3 ISO / build (push) Successful in 15m9s
New ISO build
2024-09-27 19:49:05 +01:00

24 lines
513 B
Bash
Executable File

#! /bin/bash
set -e
export DEBIAN_FRONTEND="noninteractive"
touch /chroot_scripts/live_list
for live_list in /chroot_scripts/live-lists/*.list
do
for pkg in $(cat $live_list)
do
if [[ $pkg != "#"* ]]
then
echo $pkg >> /chroot_scripts/live_list
fi
done
done
apt-get install --yes --no-install-recommends --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" $(cat /chroot_scripts/live_list | tr "\n" " ")
systemctl mask fwupd || true
systemctl mask nmdb || true