Files
fluffy-pancake/build/50-remove-packages-and-enable-Services.sh
T
humocs-manandGitHub afa49cc5ac Remove Firefox and update service configuration
Removed Firefox and related packages, updated service enabling messages.
2026-05-01 17:32:20 +02:00

25 lines
827 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* && \
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