From e41482c4a9b5303e47536ee32caef9986059ee06 Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Fri, 1 May 2026 17:23:29 -0500 Subject: [PATCH 1/2] Use mirrors url for rpmfusion --- roles/desktop/tasks/rpmfusion.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/desktop/tasks/rpmfusion.yml b/roles/desktop/tasks/rpmfusion.yml index d8aa0c43..6673c696 100644 --- a/roles/desktop/tasks/rpmfusion.yml +++ b/roles/desktop/tasks/rpmfusion.yml @@ -3,6 +3,6 @@ - name: Install rpmfusion ansible.builtin.dnf: name: - - https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_facts["distribution_major_version"] }}.noarch.rpm - - https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ ansible_facts["distribution_major_version"] }}.noarch.rpm + - https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_facts["distribution_major_version"] }}.noarch.rpm + - https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ ansible_facts["distribution_major_version"] }}.noarch.rpm disable_gpg_check: true # Trust HTTPS, and let the rpmfusion packages install GPG keys. From cacde46ce9cb1060ccd723038d7bf1eb2c45ff0d Mon Sep 17 00:00:00 2001 From: Dolph Mathews Date: Sat, 9 May 2026 15:05:51 -0500 Subject: [PATCH 2/2] Update rpmfusion.yml to include alternative hostname Added alternative hostname for rpmfusion mirrors. --- roles/desktop/tasks/rpmfusion.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/desktop/tasks/rpmfusion.yml b/roles/desktop/tasks/rpmfusion.yml index 6673c696..130d6223 100644 --- a/roles/desktop/tasks/rpmfusion.yml +++ b/roles/desktop/tasks/rpmfusion.yml @@ -3,6 +3,7 @@ - name: Install rpmfusion ansible.builtin.dnf: name: + # download1.rpmfusion.org is an alternative hostname - https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-{{ ansible_facts["distribution_major_version"] }}.noarch.rpm - https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-{{ ansible_facts["distribution_major_version"] }}.noarch.rpm disable_gpg_check: true # Trust HTTPS, and let the rpmfusion packages install GPG keys.