workstation/roles/debian/tasks/keyboard.yml

12 lines
270 B
YAML
Raw Normal View History

2020-06-16 17:30:08 +00:00
---
2020-06-18 13:03:42 +00:00
- name: Set default Xorg/Wayland keyboard layout
2020-06-16 17:30:08 +00:00
become: true
copy:
src: keyboard
dest: /etc/default/keyboard
register: keyboard_copy
- name: Update initramfs
become: true
command: /usr/sbin/update-initramfs -k all -u
when: keyboard_copy.changed