GRM-34: fix: install git-cliff to user-writable dir and fix archlinux idempotence

This commit is contained in:
2026-06-21 13:18:54 +00:00
parent e00d40dd54
commit a7eb4d1a68
3 changed files with 14 additions and 5 deletions
@@ -45,6 +45,12 @@
state: present
when: ansible_facts['os_family'] == 'Debian'
- name: Update pacman cache (Arch Linux)
community.general.pacman:
update_cache: true
when: ansible_facts['os_family'] == 'Archlinux'
changed_when: false
- name: Install rootless Docker dependencies (Arch Linux)
community.general.pacman:
name:
@@ -54,7 +60,6 @@
- fuse-overlayfs
- rsync
state: present
update_cache: true
when: ansible_facts['os_family'] == 'Archlinux'
- name: Check if rootless Docker is already set up