You are not logged in.
When logged in as a normal user and I attempt to connect to a wireless network, I get this error:
"(32) Authorization check failed: GDBus.Error:org.freedesktop.PolicyKit1.Error.Failed: Action org.freedesktop.NetworkManager.network-control is not registered."
After logging into root, I was able to enter the wireless password and connect, but after restarting and logging into my normal account, I continue to have the same error. I have already added my user account to group "network", and added this file to /etc/polkit-1/rules.d/:
filename: 50-org.freedesktop.NetworkManager.rules
---
polkit.addRule(function(action, subject) {
if (action.id.indexOf("org.freedesktop.NetworkManager.") == 0 && subject.isInGroup("network")) {
return polkit.Result.YES;
}
});
------
Also, I have enabled NetworkManager.service and made sure all other network services wire disabled. (again, network works correctly and connects automatically while in root account)
Offline
when i installed
pacman -S networkmanager networkmanager-dispatcher-ntpd
I did't have to make these extra rules? it just connected. My user is part of the wheel group, i did not add my user to network group.
Offline
Thanks! I'll try this when I get home.
Offline