Remove unwanted packages and enable services

This script removes unwanted packages and enables necessary services.
This commit is contained in:
humocs-man
2026-04-24 20:49:31 +02:00
committed by GitHub
parent be14492ec8
commit 22312e9a40
@@ -0,0 +1,20 @@
#!/usr/bin/bash
set -eoux pipefail
###############################################################################
# Cleanup of Unwanted Packages
###############################################################################
echo "Removing Firefox and langpacks..."
dnf5 remove -y firefox firefox-langpacks* || 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