![]() | 1 | initial version |
Yes is anoyying I've had had the same and start to investigate it's about Polkitauth 2 0 change in blueman :
check is in the whell group First :
id username
If not, Add your user to wheel Group, probabili you did it and the moemnt of install fedora :
usermod username -a -G wheel
You could also use the system-config-users
GUI, of course.
created a new file /etc/polkit-1/rules.d/90-blueman.rules
use sudo to get write permision in \etc
directory :
with 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;
}
});
and that's all
Regards.,
Taken from here