2023-07-15 13:31:25 +00:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#
|
|
|
|
# SPDX-FileCopyrightText: 2023 PeppemrintOS Team (peppermintosteam@proton.me)
|
|
|
|
|
|
|
|
# This script copies a file to the chroot and runs commands during the Debian installation process.
|
|
|
|
|
|
|
|
# Remove unwanted software
|
|
|
|
|
2023-07-15 17:29:07 +00:00
|
|
|
chroot /target \
|
|
|
|
apt --purge --yes autoremove \
|
|
|
|
-- quassel \
|
|
|
|
-- thunderbird \
|
|
|
|
-- mpv \
|
|
|
|
-- smtube \
|
|
|
|
-- audacious \
|
|
|
|
-- connman \
|