Rename 50-remove-packages-and-enable-Services.sh to 40-remove-packages-and-enable-Services.sh

This commit is contained in:
humocs-man
2026-05-03 20:05:10 +02:00
committed by GitHub
parent e3621866eb
commit cabd515e51
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Cleanup of Unwanted Packages
###############################################################################
echo "Removing Firefox and langpacks..."
dnf5 remove -y \
firefox \
firefox-langpacks* && \
dnf5 clean all|| true
###############################################################################
# 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