2024-08-01 14:23:17 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
|
|
|
|
2024-08-01 15:56:33 +02:00
|
|
|
touch /chroot_scripts/live_list
|
2024-08-01 14:23:17 +02:00
|
|
|
|
2024-08-01 15:56:33 +02:00
|
|
|
for live_list in /chroot_scripts/live-lists/*.list
|
2024-08-01 14:23:17 +02:00
|
|
|
do
|
|
|
|
for pkg in $(cat $live_list)
|
|
|
|
do
|
2024-08-01 16:32:06 +02:00
|
|
|
if [[ $pkg != "#"* ]]
|
|
|
|
then
|
|
|
|
echo $pkg >> /chroot_scripts/live_list
|
|
|
|
fi
|
2024-08-01 14:23:17 +02:00
|
|
|
done
|
|
|
|
done
|
|
|
|
|
2024-08-01 15:56:33 +02:00
|
|
|
apt-get install --yes --no-install-recommends --option Dpkg::Options::="--force-confnew" $(cat /chroot_scripts/live_list | tr "\n" " ")
|
2024-08-01 14:23:17 +02:00
|
|
|
|
|
|
|
|