Files
fluffy-pancake/build/40-remove-packages-and-enable-Services.sh
T

28 lines
893 B
Bash
Raw Normal View History

#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Cleanup of Unwanted Packages
###############################################################################
echo "Removing Firefox and langpacks..."
2026-05-01 12:34:33 +02:00
dnf5 remove -y \
firefox \
firefox-langpacks* \
plasma-discover-backend-packagekit || true
2026-05-07 12:14:39 +02:00
rm -f /etc/xdg/autostart/org.kde.discover.notifier.desktop
dnf5 clean all
###############################################################################
# Services Configuration
###############################################################################
echo "Enabling/Disabling 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