9 lines
252 B
YAML
9 lines
252 B
YAML
---
|
|
- name: Update menu item for ReaR in Grub config
|
|
ansible.builtin.lineinfile:
|
|
path: "{{ rear_vars_grub_conf }}"
|
|
regexp: '^menuentry '
|
|
line: "menuentry '{{ rear_vars_grub_label }}' --class os {"
|
|
state: present
|
|
notify: Update Grub
|