update cleanup scripts
This commit is contained in:
parent
ac118ed03d
commit
16f57a705c
|
@ -2,7 +2,7 @@
|
|||
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2023 PeppemrintOS Team (peppermintosteam@proton.me)
|
||||
# SPDX-FileCopyrightText: 2023 PeppermintOS Team (peppermintosteam@proton.me)
|
||||
|
||||
# This script copies a file to the chroot and runs commands during the Debian installation process.
|
||||
|
||||
|
|
|
@ -2,14 +2,13 @@
|
|||
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2023 PeppemrintOS Team (peppermintosteam@proton.me)
|
||||
# SPDX-FileCopyrightText: 2023 PeppermintOS Team (peppermintosteam@proton.me)
|
||||
|
||||
# This script copies a file to the chroot and runs commands during the Debian installation process.
|
||||
|
||||
# install hblock
|
||||
|
||||
chroot /target \
|
||||
curl -o /tmp/hblock 'https://raw.githubusercontent.com/hectorm/hblock/v3.4.2/hblock' \
|
||||
chroot /target curl -o /tmp/hblock 'https://raw.githubusercontent.com/hectorm/hblock/v3.4.2/hblock' \
|
||||
&& echo 'a7d748b69db9f94932333a5b5f0c986dd60a39fdf4fe675ad58364fea59c74b4 /tmp/hblock' | shasum -c \
|
||||
&& mv /tmp/hblock /usr/local/bin/hblock \
|
||||
&& chown 0:0 /usr/local/bin/hblock \
|
||||
|
|
|
@ -2,17 +2,16 @@
|
|||
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
#
|
||||
# SPDX-FileCopyrightText: 2023 PeppemrintOS Team (peppermintosteam@proton.me)
|
||||
# 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 --yes autoremove \
|
||||
-- quassel \
|
||||
-- thunderbird \
|
||||
-- mpv \
|
||||
-- smtube \
|
||||
-- audacious \
|
||||
-- connman \
|
||||
chroot /target apt --purge autoremove \
|
||||
quassel \
|
||||
thunderbird \
|
||||
mpv \
|
||||
smtube \
|
||||
audacious \
|
||||
connman \
|
||||
|
|
Loading…
Reference in New Issue