diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ff2a0f2..12239973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -70,6 +70,7 @@ The **patch** part changes is incremented if multiple releases happen the same m * evolinux-base: start to install linux-image-cloud-amd64 with Buster * apt: use archive.debian.org with Stretch * webapps/nextcloud: fix Add Ceph volume to fstab : missing UUID= in src +* evolinux-base: fix hardware.yml (wrong repo, missing update cache) ### Removed diff --git a/evolinux-base/tasks/hardware.yml b/evolinux-base/tasks/hardware.yml index 30badf70..b4280e09 100644 --- a/evolinux-base/tasks/hardware.yml +++ b/evolinux-base/tasks/hardware.yml @@ -6,11 +6,11 @@ tags: - packages -- name: firmware-non-free components are installed (Debian 12+) +- name: non-free-firmware components are installed (Debian 12+) ansible.builtin.replace: dest: /etc/apt/sources.list.d/system.sources - regexp: '^(Components: ((?!\bfirmware-non-free\b).)*)$' - replace: '\1 firmware-non-free' + regexp: '^(Components: ((?!\bnon-free-firmware\b).)*)$' + replace: '\1 non-free-firmware' when: - ansible_distribution_major_version is version('12', '>=') @@ -48,6 +48,7 @@ - firmware-linux-nonfree - intel-microcode state: present + update_cache: True tags: - packages