Add AMD microcode as well

This commit is contained in:
Joshua Boniface 2023-10-03 13:36:44 -04:00
parent f4bbdb7c86
commit 5764695699
1 changed files with 6 additions and 0 deletions

View File

@ -302,6 +302,12 @@
- intel-microcode
when: "'GenuineIntel' in ansible_processor"
- name: install AMD-specific microcode package
apt:
name:
- amd64-microcode
when: "'AuthenticAMD' in ansible_processor"
- name: install cleanup scripts
template:
src: "{{ item.src }}"