forked from images/live-iso-gnome
20 lines
391 B
Bash
Executable File
20 lines
391 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
|
|
|
touch /etc/chroot_scripts/live_list
|
|
|
|
for live_list in /etc/chroot_scripts/live-lists/*.list
|
|
do
|
|
for pkg in $(cat $live_list)
|
|
do
|
|
echo $pkg >> /etc/chroot_scripts/live_list
|
|
done
|
|
done
|
|
|
|
apt-get install --yes --no-install-recommends --option Dpkg::Options::="--force-confnew" $(cat /etc/chroot_scripts/live_list | tr "\n" " ")
|
|
|
|
|