Skip to content

Commit

Permalink
vm(sgx): actually upgrade to 6.5 kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
csegarragonz committed Oct 24, 2024
1 parent 27cd88a commit f12c1f7
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ansible/tasks/sgx_setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@
shell: "echo 'export PATH=$PATH:/home/{{ ansible_user }}/.local/bin' >> /home/{{ ansible_user }}/.bashrc"

- name: "Upgrade to 6.x kernel for EDMM features"
shell: "apt update && apt upgrade -y"
become: yes
tasks:
- name: "Update apt cache"
apt:
update_cache: yes

- name: "Install the specific kernel version"
apt:
name: linux-image-unsigned-6.5.0-1011-azure
state: present

- name: "Reboot to pick-up latest kernel"
reboot:
Expand Down

0 comments on commit f12c1f7

Please sign in to comment.