From a872e039867665ea52abc5b08baa5c857a96d4f4 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 2 Oct 2019 22:09:46 +0100 Subject: [PATCH] Install microcode --- tasks/boot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tasks/boot.yml b/tasks/boot.yml index 12aaf3d..6877dca 100644 --- a/tasks/boot.yml +++ b/tasks/boot.yml @@ -43,3 +43,14 @@ - exfat-utils - hfsprogs - ntfs-3g + +- name: "Install Microcode" + aur: + skip_installed: true + name: "{{ item }}" + become: true + become_user: aur_builder + when: "item not in installed_packages.stdout_lines" + with_items: + - 'amd-ucode' + - 'intel-ucode'