From 980830347a889d0eb762a2e54f9d4618e2b72e3c Mon Sep 17 00:00:00 2001 From: olli Date: Fri, 5 Apr 2024 12:20:53 +0200 Subject: [PATCH] firefox.yml aktualisiert --- firefox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firefox.yml b/firefox.yml index 7e78917..00839f0 100644 --- a/firefox.yml +++ b/firefox.yml @@ -30,7 +30,7 @@ - "/etc/librewolf/policies/policies.json" - name: Get sha256 - shell: wget -q https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.x86_64.AppImage.sha256 -O - | cut -d" " -f1 + shell: wget -q https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.{{ ansible_architecture }}.AppImage.sha256 -O - | cut -d" " -f1 register: command_output - set_fact: @@ -38,7 +38,7 @@ - name: Download LibreWolf as Appimage (flatpak ignores policies.json) ansible.builtin.get_url: - url: https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.x86_64.AppImage + url: https://gitlab.com/api/v4/projects/24386000/packages/generic/librewolf/latest/LibreWolf.{{ ansible_architecture }}.AppImage dest: /usr/local/bin/librewolf checksum: sha256:{{ librewolf_sha256 }} mode: "0555"