--- - name: check if non-free and contrib apt component is enabled for debian when: 'ansible_distribution == "Debian"' assert: msg: "On Debian microcode-update packages are in non-free - please enable it (and contrib) using 'apt_repo_components'" that: - apt_repo_components is defined - "'contrib' in apt_repo_components" - "'non-free' in apt_repo_components" - name: install microcode-update packages apt: name: - intel-microcode - amd64-microcode state: present