We're doing this because at the end of the Proxmox VE 8 lifecycle in August of 2025 the pve8to9 migration check script indicated if would be potentially beneficial to install the amd64-microcode package for microcode updates to our processor. We agree which is why we need the non-free-firmware component to be able to install amd64-microcode.
9 lines
360 B
YAML
9 lines
360 B
YAML
# SPDX-License-Identifier: MIT
|
|
- name: 'In ''/etc/apt/sources.list'' enable non-free and non-free-firmware components in all Debian-native repos'
|
|
ansible.builtin.replace:
|
|
path: '/etc/apt/sources.list'
|
|
regexp: '^(.*?)( main contrib(?! non-free non-free-firmware))'
|
|
replace: '\g<1>\g<2> non-free non-free-firmware'
|
|
notify:
|
|
- 'apt-get update'
|