forked from bitlair/ansible
15 lines
368 B
YAML
15 lines
368 B
YAML
---
|
|
- name: Install guest agent
|
|
ansible.builtin.apt:
|
|
name: qemu-guest-agent
|
|
|
|
- name: Serial Console
|
|
ansible.builtin.lineinfile:
|
|
path: /etc/default/grub
|
|
regexp: ^GRUB_CMDLINE_LINUX_DEFAULT
|
|
line: 'GRUB_CMDLINE_LINUX_DEFAULT="quiet console=ttyS0,115200n1 console=tty0"'
|
|
notify:
|
|
- update grub
|
|
- reboot
|
|
|
|
- ansible.builtin.meta: flush_handlers
|