On 19/01/14 13:45, Frank Murphy wrote:
between *** is the one line for me for these twon lines
line 1

***
if (action.id == "org.freedesktop.login1.power-off-multiple-sessions"
||
***

line 2
***
action.id == "org.freedesktop.login1.reboot-multiple-sessions") {
***

___
Regards,
Frank
www.frankly3d.com

With that info I changed things to look like"

[root@box10 bobg]# cat /etc/polkit-1/rules.d/00-no-reboot-password.rules
#    /etc/polkit-1/rules.d/00-no-reboot-password.rules

/* Allow shutdown when others are logged in  */
polkit.addRule(function(action, subject) {
    if (action.id =="org.freedesktop.login1.power-off-multiple-sessions" ||

        action.id == "org.freedesktop.login1.reboot-multiple-sessions")
{
        return polkit.Result.YES;
    }
});

Which removes what was worrying me but it still requires the root password to shutdown. Yes I did reboot several times.

My interest in correcting this is waning, I have other stuff I can do to amuse myself this afternoon.

Thanks much for your patience,

Bob

--
http://www.qrz.com/db/w2bod
Box10 Fedora-20/64bit Linux

--
users mailing list
[email protected]
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Reply via email to