Files
fluffy-pancake/build/40-remove-packages-and-enable-Services.sh
T
humocs-manandGitHub 2e51ef3aa8 Update package removal script to include new packages
Removed Firefox and related langpacks, added plasma-discover-packagekit to the removal process.
2026-05-07 07:10:06 +02:00

27 lines
857 B
Bash
Executable File

#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Cleanup of Unwanted Packages
###############################################################################
echo "Removing Firefox and langpacks..."
dnf5 remove -y \
firefox \
firefox-langpacks* \
plasma-discover-packagekit || true
dnf5 clean all
###############################################################################
# Services Configuration
###############################################################################
echo "Enabling/Disabling services..."
systemctl mask packagekit.service
systemctl enable libvirtd.service
systemctl enable virtlogd.service
systemctl enable podman.socket
systemctl enable bluetooth.service
systemctl enable plasma-setup.service
systemctl enable bootc-fetch-apply-updates.timer