8

What is the purpose of /etc/pm/config.d and /etc/pm/power.d? It's my understand that scripts in /etc/pm/sleep.d are run at the time of a power management event such as the computer sleeping, hibernating, resuming and thawing.

What would I use the config.d and power.d directories for?

Sean
  • 1,953

1 Answers1

3
  /etc/pm/config.d
       The files in this directory are evaluated in C sort order. These
       files can be provided by individual packages outside of pm-utils.
       If a global configuration variable is set, the value set to will be
       appended to the previous value. If any other variable is set, it
       will be ignored. The syntax is simply: VAR_NAME = value. See the
       CONFIGURATION VARIABLES section for valid variables defined by
       pm-utils. External packages can define others, see their respective
       documentation for more information.

The hooks for the power state are placed in

/usr/lib/pm-utils/power.d

distribution / package provided hooks 

/etc/pm/power.d

hooks added by the system administrator 

Hooks in /etc/pm/ take precedence over those in /usr/lib/pm-utils/, so the system administrator can override the defaults provided by the distribution. 

For instance check this link

kamil
  • 7,397