21 lines
441 B
Bash
Executable File
21 lines
441 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# SPDX-FileCopyrightText: 2023 PeppermintOS Team (peppermintosteam@proton.me)
|
|
|
|
# This script copies a file to the chroot and runs commands during the Debian installation process.
|
|
|
|
# Remove unwanted software
|
|
|
|
chroot /target apt --purge autoremove \
|
|
quassel \
|
|
thunderbird \
|
|
mpv \
|
|
smtube \
|
|
smplayer \
|
|
audacious \
|
|
connman \
|
|
deluge \
|
|
galculator \
|