live-iso-gnome/chroot_scripts/2-install-live-lists.sh
Ward from fusion-voyager-3 417b1209e2
Some checks failed
Push ISO / build (push) Failing after 1m14s
first attempt at making GPT only refind image
2024-08-01 19:05:23 +03:00

23 lines
436 B
Bash
Executable File

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