https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236176

--- Comment #12 from Adriaan de Groot <[email protected]> ---
Based on a comment on the FreeBSD forums, this is the solution that works for
me:

```
root@beastie:~ # cat /usr/local/etc/polkit-1/rules.d/40-wheel-group.rules 
polkit.addRule(function(action, subject) {
    if (subject.isInGroup("wheel")) {
        return polkit.Result.YES;
    }
});
```

(although this does much more than just allowing suspend/shutdown, so I don't
like it a whole lot)

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to