Xfce4 logout does not work properly

Hello i am using calculate linux 18.2 fully updated with openrc and when i use xfce4-logout and relogin,i cannot reboot-shutdown-suspend also the network manager service does not work

Found solution here : https://forums.gentoo.org/viewtopic-t-1027284-start-0.html

create text file at: /etc/polkit-1/rules.d/49-nopasswd_global.rules

and add:

/* Allow members of the wheel group to execute any actions
* without password authentication, similar to “sudo NOPASSWD:”
*/
polkit.addRule(function(action, subject) {
if (subject.isInGroup(“wheel”)) {
return polkit.Result.YES;
}
});