You are not logged in.
Quoting github page at: https://github.com/blueman-project/blueman/releases
==================================
This release adds authorisation checks for the commands blueman runs as root
We added the following policykit authorisation checks
org.blueman.network.setup
org.blueman.pppd.pppconnect
org.blueman.rfkill.setstate
See https://github.com/blueman-project/blue … /PolicyKit
==================================
I think the wiki need to be updated, I am not skilled enough to edit it....
Otherwise we get some polkit prompts during login when using a GUI DE.
Solved: https://wiki.archlinux.org/index.php/Bl … ermissions
Last edited by spsf64 (2018-08-29 14:54:52)
Sergio S.
Offline
You may already have done this but for anyone else who is reading this, what needs to be done is explained in the second link in your comment.
https://github.com/blueman-project/blue … /PolicyKit
A file needs to be created for polkit as root in:
/usr/share/polkit-1/rules.d/
that contains the following:
/* Allow users in wheel group to use blueman feature requiring root without authentication */
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("wheel")) {
return polkit.Result.YES;
}
});
I simply named my file blueman.rules.
Offline
I've created https://bugs.archlinux.org/task/59736, so hopefully this will be added to the blueman package.
Offline
@delx, I don't believe it is a bug, it is more like a configuration setting?? Maybe an expert/mod can answer...
That is why I mentioned the WIKI should be updated.
Maybe this topic should be moved to "Forum & Wiki discussion"?
Sergio S.
Offline
@spsf64 you could updated the wiki.
Offline
You're right, it isn't an Arch packaging issue. I've raised a request with blueman to reconsider the default policy: https://github.com/blueman-project/blueman/issues/912
Offline
@loqs, I don't feel comfortable editing the wiki, no experience at all, also English is not my primary language. I am afraid of screwing things, lol!
@delx, just checked the github page and saw the reply, thanks
Sergio S.
Offline
New file in /usr/share/polkit-1/rules.d/ did the trick !
Thanks !
_________________________
Asus X200CA Notebook
Offline
Marked as solved, someone kindly edit the wiki, thanks!
Also edited the 1st post.
Sergio S.
Offline