blob: fe712ed7e91e7c12c8685eac7ee72b007576d190 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
---
- name: "Rebuild initramfs"
become: true
ansible.builtin.command:
cmd: "mkinitcpio -P"
changed_when: true
notify: "Sync kernel to EFI partition"
- name: "Sync kernel to EFI partition"
become: true
ansible.builtin.command:
cmd: "/usr/local/bin/refind-sync-kernel"
changed_when: true
- name: "Run update-initramfs"
become: true
ansible.builtin.command:
cmd: "update-initramfs -u -k all"
changed_when: true
|