From 417343b113ca9b0caa47bc5128239fbbf40514f2 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 2 Dec 2024 10:03:08 -0800 Subject: [PATCH] ipsilon: switch away from broken get_url to a local file with hotfix Signed-off-by: Kevin Fenzi --- roles/ipsilon/tasks/patches.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/ipsilon/tasks/patches.yml b/roles/ipsilon/tasks/patches.yml index 3e5a2f29ea..f6baed00f3 100644 --- a/roles/ipsilon/tasks/patches.yml +++ b/roles/ipsilon/tasks/patches.yml @@ -11,9 +11,9 @@ state: directory - name: download patches - ansible.builtin.get_url: - url: https://pagure.io/ipsilon/pull-request/{{item}}.patch - dest: /opt/ipsilon-patches/{{item}}.patch + copy: > + src=/srv/web/infra/bigfiles/hotfixes/ipsilon/{{ item }} dest=/opt/ipsilon-patches/{{item}}.patch + owner=root group=root mode=0644 loop: "{{ ipsilon_patches }}" - name: apply patches