Policy Kit - .conf |
Desktop Apps Training - Policy Kit | ||||||||||||||||||||||||||
DESCRIPTIONThe /etc/PolicyKit/PolicyKit.conf configuration file provides a way for system administrators to override policy for mechanisms that use the PolicyKit library to determine whether a caller is allowed to use the mechanism. Changes to this configuration file are immediately propagated to running processes using the PolicyKit library. If the configuration file is invalid, processes using this library will log this fact to the system logger and the library will only only return no as the answer to processes using it. The polkit-config-file-validate(1) tool can be used to verify that the configuration file is valid. FILE FORMATThe configuration file is an XML document. It must have the following doctype declaration:
The following elements may be present in the configuration file: configThis is the root element. A single attribute version must be present and must be set to "0.1" at this point. There can only be one config element in the configuration file. matchThis element is for matching information related to the decision making process and includes values describing both the caller and the action. This element can be embedded in both config and other match elements (hence allowing for nested matching). There can only be a single attribute in each match element and POSIX Extended Regular Expression syntax are supported in the value part. The following attributes are supported:
returnThis element is for used to specify what result the PolicyKit library will return. It can only be embedded in config and match elements and can embed no elements itself. The return element is typically used deeply inside a number of match elements. A single attribute, result is supported and it can assume the following values:
define_admin_authThis element is used to specify the meaning of "authenticate as administrator". It is normally used at the top-level but can also be used deep inside a number of match elements for conditional behavior. There can only be a single attribute in each define_admin_auth element. POSIX Extended Regular Expression syntax is not supported in the value part, however multiple values to match on can be separated with the bar (|) character. The following attributes are supported:
EXAMPLESFor brevity, the standard XML and DOCTYPE headers as well as the top-level config are omitted in the following configuration file examples. The actions used may also be fictional, use polkit-action(1), to learn about the actions available on your system. ALLOW EVERYTHINGThe users "davidz" and "bateman" are allowed to do any action:
MOUNTING FIXED DRIVESSuppose the action org.freedesktop.hal.storage.mount-fixed is used to determine whether mounting internal hard drives are allowed. Then this configuration file
specifies that user "davidz" is always allowed to do the action, while user "freddy" is never allowed to do the action. Other users will be subject to the defaults results specified in the .policy file describing the action. AVOIDING THE ROOT PASSWORDSuppose the group wheel contains the users on a system who are allowed to carry out administrative tasks (ie. tasks that would usually require the root password) on a system where the root account is disabled. Then
can be used to specify that users in said group can authenticate using their own password in instances where the system would normally prompt for the root password. |