common: Add vm tweaks

This commit is contained in:
polyfloyd 2024-06-01 23:30:09 +02:00
parent fc5913d56b
commit e3b3ee0eec
5 changed files with 24 additions and 0 deletions

View file

@ -1,3 +1,5 @@
is_vm: true
ansible_user: root
ansible_python_interpreter: auto_silent
notify_email: bestuur@bitlair.nl

View file

@ -1,3 +1,5 @@
is_vm: false
music_domain: music.bitlair.nl
acme_san_domains:
- [ music.bitlair.nl ]

View file

@ -1,4 +1,5 @@
ssh_port: "22"
is_vm: false
unattended_upgrades_auto_reboot_time: "04:00"
unattended_upgrades_extra_origin_patterns: []
trusted_ranges:

View file

@ -18,6 +18,10 @@
- tags: node-exporter
import_tasks: node-exporter.yaml
- tags: vm
import_tasks: node-exporter.yaml
when: is_vm
- name: Remove Vim
apt:
name: vim

View file

@ -0,0 +1,15 @@
---
- name: Install guest agent
apt:
name: qemu-guest-agent
- name: Serial Console
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
- meta: flush_handlers