21 lines
463 B
YAML
21 lines
463 B
YAML
![]() |
- name: Install tmpfiles.d configuration
|
||
|
copy:
|
||
|
src: "files/{{ item }}_tmpfiles.conf"
|
||
|
dest: "/etc/tmpfiles.d/{{ item }}.conf"
|
||
|
mode: 0644
|
||
|
owner: root
|
||
|
group: wheel
|
||
|
loop:
|
||
|
- pixelbook_keyboard_backlight
|
||
|
|
||
|
- name: Install Configuration
|
||
|
copy:
|
||
|
src: "files/{{ item.src }}"
|
||
|
dest: "{{ item.dest }}"
|
||
|
mode: 0600
|
||
|
owner: root
|
||
|
group: wheel
|
||
|
loop:
|
||
|
- src: 61-eve-keyboard.hwdb
|
||
|
dest: /etc/udev/hwdb.d/61-eve-keyboard.hwdb
|