Files
fluffy-pancake/build/50-remove-packages-and-enable-Services.sh
T
humocs-manandGitHub e668f35704 Enhance package removal script for cleanup
Expanded package removal to include PackageKit and plasma-discover-packagekit, and added cleanup command.
2026-05-01 12:34:33 +02:00

26 lines
829 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* \
PackageKit \
plasma-discover-packagekit && \
dnf5 clean all|| true
###############################################################################
# Services Configuration
###############################################################################
echo "Enabling services..."
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