From: Michał Górny Date: Sat, 4 Jun 2016 18:02:04 +0000 (+0200) Subject: net-wireless/blueman: include polkit rules for network setup, #584300 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=7724be2064e7f967ff1678165c514a698d8c526c;p=gentoo.git net-wireless/blueman: include polkit rules for network setup, #584300 Add a set of polkit rules that allow active users belonging to the plugdev group to perform network setup actions via blueman. This resembles the rules used by NetworkManager. Bug: https://bugs.gentoo.org/show_bug.cgi?id=584300 --- diff --git a/net-wireless/blueman/blueman-9999.ebuild b/net-wireless/blueman/blueman-9999.ebuild index 011f2ef1c211..69c82c72397e 100644 --- a/net-wireless/blueman/blueman-9999.ebuild +++ b/net-wireless/blueman/blueman-9999.ebuild @@ -97,6 +97,12 @@ src_configure() { src_install() { default + if use policykit; then + # Allow users in plugdev group to modify connections + insinto /usr/share/polkit-1/rules.d + doins "${FILESDIR}/01-org.blueman.rules" + fi + python_fix_shebang "${D}" rm "${D}"/$(python_get_sitedir)/*.la || die } diff --git a/net-wireless/blueman/files/01-org.blueman.rules b/net-wireless/blueman/files/01-org.blueman.rules new file mode 100644 index 000000000000..2f1a2bd36ee7 --- /dev/null +++ b/net-wireless/blueman/files/01-org.blueman.rules @@ -0,0 +1,11 @@ +// Let users in plugdev group modify network connections using blueman +polkit.addRule(function(action, subject) { + if ((action.id == "org.blueman.network.setup" || + action.id == "org.blueman.dhcp.client" || + action.id == "org.blueman.rfkill.setstate" || + action.id == "org.blueman.pppd.pppconnect") && + subject.isInGroup("plugdev") && subject.active) { + + return polkit.Result.YES; + } +});