live-iso-gnome/chroot_scripts/2-install-live-lists.sh
Ward from fusion-voyager-3 f7e2450cb9
Some checks failed
Push ISO / build (push) Failing after 6m22s
Fix data path
2024-08-01 19:16:30 +03:00

23 lines
412 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" $(cat /chroot_scripts/live_list | tr "\n" " ")