live-iso-gnome/chroot_scripts/4-uninstall-rem-lists.sh
Ward from fusion-voyager-3 80f4eeebe5
Some checks failed
Push ISO / build (push) Failing after 1m10s
chroot attempt 0
2024-08-01 15:23:17 +03:00

20 lines
359 B
Bash
Executable File

#! /bin/bash
set -e
export DEBIAN_FRONTEND="noninteractive"
touch /etc/chroot_scripts/rem_list
for rem_list in /etc/chroot_scripts/rem-lists/*.list
do
for pkg in $(cat $rem_list)
do
echo $pkg >> /etc/chroot_scripts/rem_list
done
done
apt-get purge --yes --option Dpkg::Options::="--force-confnew" $(cat /etc/chroot_scripts/rem_list | tr "\n" " ")