Disable systemd-udev-settle on Linux on framework laptop.
This commit is contained in:
9
ansible/roles/framework_laptop/tasks/linux.yaml
Normal file
9
ansible/roles/framework_laptop/tasks/linux.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
# This will prevent pools from being imported, but since my laptop has a single pool with a single disk which is mounted during boot, disabling this service saves me 10 seconds at boot. Reference: https://github.com/openzfs/zfs/issues/10891
|
||||
- name: Disable services
|
||||
systemd:
|
||||
enabled: no
|
||||
masked: true
|
||||
name: "{{ item }}"
|
||||
daemon_reload: yes
|
||||
loop:
|
||||
- systemd-udev-settle.service
|
||||
Reference in New Issue
Block a user