diff options
Diffstat (limited to 'polkit')
-rw-r--r-- | polkit/policy/org.mageia.drakkeyboard.policy | 22 | ||||
-rw-r--r-- | polkit/policy/org.mageia.drakmouse.policy | 22 | ||||
-rw-r--r-- | polkit/policy/org.mageia.drakx11.policy | 22 | ||||
-rwxr-xr-x | polkit/wrappers/drakkeyboard | 2 | ||||
-rwxr-xr-x | polkit/wrappers/drakmouse | 2 | ||||
-rwxr-xr-x | polkit/wrappers/drakx11 | 2 |
6 files changed, 72 insertions, 0 deletions
diff --git a/polkit/policy/org.mageia.drakkeyboard.policy b/polkit/policy/org.mageia.drakkeyboard.policy new file mode 100644 index 0000000..e3cd5bd --- /dev/null +++ b/polkit/policy/org.mageia.drakkeyboard.policy @@ -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.drakkeyboard.pkexec.run"> + <description>Run Mageia Keyboard Configuration</description> + <message>Authentication is required to run Mageia Keyboard Configuration</message> + <icon_name>drakconf</icon_name> + <defaults> + <allow_any>no</allow_any> + <allow_inactive>no</allow_inactive> + <allow_active>yes</allow_active> + </defaults> + <annotate key="org.freedesktop.policykit.exec.path">/usr/libexec/drakkeyboard</annotate> + <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate> + </action> +</policyconfig> diff --git a/polkit/policy/org.mageia.drakmouse.policy b/polkit/policy/org.mageia.drakmouse.policy new file mode 100644 index 0000000..157e2d2 --- /dev/null +++ b/polkit/policy/org.mageia.drakmouse.policy @@ -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.drakmouse.pkexec.run"> + <description>Run Mageia Mouse Configuration</description> + <message>Authentication is required to run Mageia Mouse Configuration</message> + <icon_name>drakconf</icon_name> + <defaults> + <allow_any>no</allow_any> + <allow_inactive>no</allow_inactive> + <allow_active>yes</allow_active> + </defaults> + <annotate key="org.freedesktop.policykit.exec.path">/usr/libexec/drakmouse</annotate> + <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate> + </action> +</policyconfig> diff --git a/polkit/policy/org.mageia.drakx11.policy b/polkit/policy/org.mageia.drakx11.policy new file mode 100644 index 0000000..efa8441 --- /dev/null +++ b/polkit/policy/org.mageia.drakx11.policy @@ -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.drakx11.pkexec.run"> + <description>Run Mageia Graphics Configuration</description> + <message>Authentication is required to run Mageia Graphics Configuration</message> + <icon_name>drakconf</icon_name> + <defaults> + <allow_any>no</allow_any> + <allow_inactive>no</allow_inactive> + <allow_active>auth_self_keep</allow_active> + </defaults> + <annotate key="org.freedesktop.policykit.exec.path">/usr/libexec/drakx11</annotate> + <annotate key="org.freedesktop.policykit.exec.allow_gui">true</annotate> + </action> +</policyconfig> diff --git a/polkit/wrappers/drakkeyboard b/polkit/wrappers/drakkeyboard new file mode 100755 index 0000000..f46e0ce --- /dev/null +++ b/polkit/wrappers/drakkeyboard @@ -0,0 +1,2 @@ +#!/bin/sh +exec /usr/bin/pkexec /usr/libexec/drakkeyboard $* diff --git a/polkit/wrappers/drakmouse b/polkit/wrappers/drakmouse new file mode 100755 index 0000000..6d66e3a --- /dev/null +++ b/polkit/wrappers/drakmouse @@ -0,0 +1,2 @@ +#!/bin/sh +exec /usr/bin/pkexec /usr/libexec/drakmouse $* diff --git a/polkit/wrappers/drakx11 b/polkit/wrappers/drakx11 new file mode 100755 index 0000000..601654b --- /dev/null +++ b/polkit/wrappers/drakx11 @@ -0,0 +1,2 @@ +#!/bin/sh +exec /usr/bin/pkexec /usr/libexec/drakx11 $* |