ferreo
675c6a27af
Some checks failed
Release Nest NVIDIA amd64-v3 ISO / build (push) Failing after 8m9s
24 lines
513 B
Bash
Executable File
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
|