Created
April 5, 2018 08:47
-
-
Save kalw/06e10399197bc6c7aafd76ee94702c18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://meltdownattack.com | |
- name: Patch Linux systems against Meltdown and Spectre | |
hosts: "{{ target_hosts | default('all') }}" | |
become: yes | |
vars: | |
reboot_after_update: "{{ reboot_after_update | default('no') }}" | |
packages: | |
# https://access.redhat.com/security/vulnerabilities/speculativeexecution | |
RedHat7: | |
- kernel-3.10.0-693.11.6.el7 | |
- microcode_ctl-2.1-22.2.el7 | |
- perf-3.10.0-693.11.6.el7 | |
- python-perf-3.10.0-693.11.6.el7 | |
RedHat6: | |
- kernel-2.6.32-696.18.7.el6 | |
- kernel-firmware-2.6.32-696.18.7.el6 | |
- perf-2.6.32-696.18.7.el6 | |
- python-perf-2.6.32-696.18.7.el6 | |
# https://www.debian.org/security/2018/dsa-4078 | |
Debian7: | |
- linux-image-3.2.0-5-amd64 | |
Debian8: | |
- linux-image-3.16.0-5-amd64 | |
Debian9: | |
- linux-image-4.9.0-5-amd64 | |
# https://wiki.ubuntu.com/SecurityTeam/KnowledgeBase/SpectreAndMeltdown | |
Ubuntu14: | |
- linux-image-3.13.0-141-generic | |
Ubuntu16: | |
- linux-image-4.4.0-112-generic | |
Ubuntu17: | |
- linux-image-4.13.0-31-generic | |
tasks: | |
- name: get the current kernel version | |
shell: uname -r | |
become: yes | |
register: old_kernel | |
- name: RHEL | Install kernel updates | |
yum: | |
name: "{{ packages[ansible_os_family ~ ansible_distribution_major_version] }}" | |
state: present | |
when: ansible_pkg_mgr == 'yum' | |
notify: reboot system | |
- name: DEBIAN | Install kernel updates | |
apt: | |
name: "{{ item }}" | |
state: present | |
update_cache: yes | |
cache_valid_time: 3600 | |
with_items: "{{ packages[ansible_distribution ~ ansible_distribution_major_version] }}" | |
when: ansible_pkg_mgr == 'apt' | |
notify: reboot system | |
handlers: | |
- name: reboot system | |
shell: sleep 3; reboot | |
async: 15 | |
poll: 0 | |
when: reboot_after_update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment