mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-28 18:41:48 +00:00
Plugins are allowed to 'opt-out' of this behaviour using _RULE_INHIBITS_IDLE. This should be used where waking up the hardware to coldplug is expensive, either from a power consumption point of view, or if other artifacts are going to be seem -- for instance if the screen flickers when probing display devices. This functionality is also inhibited when the actual upgrade is happening, for obvious reasons. Admins can turn off this auto-sleep behaviour by editing the daemon.conf file. Fixes https://github.com/hughsie/fwupd/issues/417
19 lines
474 B
Plaintext
19 lines
474 B
Plaintext
[fwupd]
|
|
|
|
# Allow blacklisting specific devices by their GUID
|
|
# Uses semicolons as delimiter
|
|
BlacklistDevices=
|
|
|
|
# Allow blacklisting specific plugins
|
|
# Uses semicolons as delimiter
|
|
BlacklistPlugins=test
|
|
|
|
# Maximum archive size that can be loaded in Mb, with 0 for the default
|
|
ArchiveSizeMax=0
|
|
|
|
# Idle time in seconds to shut down the daemon -- note some plugins might
|
|
# inhibit the auto-shutdown, for instance thunderbolt.
|
|
#
|
|
# A value of 0 specifies 'never'
|
|
IdleTimeout=7200
|