diff options
author | Colin Guthrie <colin@mageia.org> | 2013-09-29 19:23:42 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-09-29 20:33:01 +0100 |
commit | 0e4d73a7ded23e8b5a76d58bd5b448dd9e884ef9 (patch) | |
tree | 0e1ed9f5a239645bd586f307d6ffdd4b384c4291 /polkit/policy/org.mageia.drakinvictus.policy.in | |
parent | c610e1839b3903497a6f6d9009d997b7ac88eea5 (diff) | |
download | drakx-net-0e4d73a7ded23e8b5a76d58bd5b448dd9e884ef9.tar drakx-net-0e4d73a7ded23e8b5a76d58bd5b448dd9e884ef9.tar.gz drakx-net-0e4d73a7ded23e8b5a76d58bd5b448dd9e884ef9.tar.bz2 drakx-net-0e4d73a7ded23e8b5a76d58bd5b448dd9e884ef9.tar.xz drakx-net-0e4d73a7ded23e8b5a76d58bd5b448dd9e884ef9.zip |
Convert to polkit from usermode consolehelper for gaining root privileges
polkit is better integrated into various environments, both console and GUI
and offers better access rules and prevents the internal need to run
su which is prone to errors and doesn't offer an environment agnostic
prompt to the user.
In this case the current package policy (in rpm spec) has been migrated
here and is as follows:
draknetcenter requires authentication as the current user.
Everything else require authentication as an administrator.
Diffstat (limited to 'polkit/policy/org.mageia.drakinvictus.policy.in')
-rw-r--r-- | polkit/policy/org.mageia.drakinvictus.policy.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/polkit/policy/org.mageia.drakinvictus.policy.in b/polkit/policy/org.mageia.drakinvictus.policy.in new file mode 100644 index 0000000..25f6264 --- /dev/null +++ b/polkit/policy/org.mageia.drakinvictus.policy.in @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE policyconfig PUBLIC +"-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN" +"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd"> +<policyconfig> + + <vendor>Mageia</vendor> + <vendor_url>http://www.mageia.org/</vendor_url> + + <action id="org.mageia.drakinvictus.pkexec.run"> + <_description>Run Mageia Firewall Configuration</_description> + <_message>Authentication is required to run Mageia Firewall Configuration</_message> + <icon_name>drakconf</icon_name> + <defaults> + <allow_any>no</allow_any> + <allow_inactive>no</allow_inactive> + <allow_active>auth_admin_keep</allow_active> + </defaults> + <annotate key="org.freedesktop.policykit.exec.path">/usr/libexec/drakinvictus</annotate> + <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate> + </action> +</policyconfig> |