All checks were successful
Ansible Playbook lint / ansible-lint (push) Successful in 14s
9 lines
181 B
YAML
9 lines
181 B
YAML
---
|
|
- name: GRUB mkconfig
|
|
ansible.builtin.command: |
|
|
grub-mkconfig -o /boot/grub/grub.cfg
|
|
register: ret
|
|
changed_when: ret.rc != 0
|
|
- name: Reboot
|
|
ansible.builtin.reboot:
|