ansible-playbooks/roles/hardware/tasks/main.yml

23 lines
475 B
YAML
Raw Permalink Normal View History

---
- name: Install hardware probing tools
apt: name={{ item }} state=latest
with_items:
- lm-sensors
- smartmontools
- hwinfo
- lshw
- acpi
- name: Install framebuffer stuff
apt: name={{ item }} state=latest
with_items:
- vbetool
- fbset
- read-edid
- name: enable magic sysrq
lineinfile: dest=/etc/sysctl.conf
state=present
line='kernel.sysrq = 1'