Removed old repository installation commands and added new RPM Fusion repository links.
10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/usr/bin/bash
|
|
set -eoux pipefail
|
|
|
|
|
|
dnf5 install -y \
|
|
https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-44.noarch.rpm \
|
|
https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-44.noarch.rpm
|
|
|
|
dnf5 clean all
|