Today I realized that `dhcpcd` has been logging several hundred thousand
of these messages every second:
libudev: received NULL device
This was causing both `dhcpcd` and `systemd-journald` to consume 100%
CPU.
I am not entirely sure what a "device management" module is in the
context of `dhcpcd`, but it does not seem to be required. Setting the
`nodev` option in `dhcpcd.conf` suppresses the messages, and seems to
have no effect on the operation of the daemon.
15 lines
370 B
YAML
15 lines
370 B
YAML
dhcpcd_send_hostname: true
|
|
dhcpcd_use_clientid: false
|
|
dhcpcd_persistent: true
|
|
dhcpcd_rapid_commit: true
|
|
dhcpcd_options: '{{ dhcpcd_default_options }}'
|
|
dhcpcd_ntp_servers: true
|
|
dhcpcd_interface_mtu: true
|
|
dhcpcd_require_server_id: true
|
|
dhcpcd_slaac_private: true
|
|
dhcpcd_noipv4ll: false
|
|
dhcpcd_noipv4: false
|
|
dhcpcd_noipv6rs: false
|
|
dhcpcd_interfaces: []
|
|
dhcpcd_nodev: false
|