diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-04-16 16:47:33 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-04-16 18:59:08 +0200 |
commit | f8e2fb7b14e53f5a4bcfd66d26910af1dee185c6 (patch) | |
tree | c8f7ab02b4525466984a7fa23ebedfde090ef168 /src/login/org.freedesktop.login1.policy.in | |
parent | 9156e799a258658cf3f51434708cdb194c13eaa4 (diff) |
logind: add shutdown/suspend/idle inhibition framework
Diffstat (limited to 'src/login/org.freedesktop.login1.policy.in')
-rw-r--r-- | src/login/org.freedesktop.login1.policy.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/login/org.freedesktop.login1.policy.in b/src/login/org.freedesktop.login1.policy.in index fb5c539d50..a2dc4025ce 100644 --- a/src/login/org.freedesktop.login1.policy.in +++ b/src/login/org.freedesktop.login1.policy.in @@ -16,6 +16,16 @@ <vendor>The systemd Project</vendor> <vendor_url>http://www.freedesktop.org/wiki/Software/systemd</vendor_url> + <action id="org.freedesktop.login1.inhibit"> + <_description>Allow applications to inhibit system shutdown and suspend</_description> + <_message>Authentication is required to allow an application to inhibit system shutdown or suspend</_message> + <defaults> + <allow_any>auth_admin_keep</allow_any> + <allow_inactive>yes</allow_inactive> + <allow_active>yes</allow_active> + </defaults> + </action> + <action id="org.freedesktop.login1.set-user-linger"> <_description>Allow non-logged-in users to run programs</_description> <_message>Authentication is required to allow a non-logged-in user to run programs</_message> @@ -66,6 +76,16 @@ </defaults> </action> + <action id="org.freedesktop.login1.power-off-ignore-inhibit"> + <_description>Power off the system when an application asked to inhibit it</_description> + <_message>Authentication is required to allow powering off the system while an application asked to inhibit it</_message> + <defaults> + <allow_any>auth_admin_keep</allow_any> + <allow_inactive>auth_admin_keep</allow_inactive> + <allow_active>auth_admin_keep</allow_active> + </defaults> + </action> + <action id="org.freedesktop.login1.reboot"> <_description>Reboot the system</_description> <_message>Authentication is required to allow rebooting the system</_message> @@ -86,4 +106,14 @@ </defaults> </action> + <action id="org.freedesktop.login1.reboot-ignore-inhibit"> + <_description>Reboot the system when an application asked to inhibit it</_description> + <_message>Authentication is required to allow rebooting the system while an application asked to inhibit it</_message> + <defaults> + <allow_any>auth_admin_keep</allow_any> + <allow_inactive>auth_admin_keep</allow_inactive> + <allow_active>auth_admin_keep</allow_active> + </defaults> + </action> + </policyconfig> |