Use sudo group instead of the wheel one

since the wheel group doesn't exist on Debian

Forwarded: not-needed

Gbp-Pq: Name 02_polkit_sudo_group.patch
This commit is contained in:
Laurent Bigonville 2016-11-08 19:44:47 +01:00 committed by luzp
parent 041ea2cffc
commit 079ac3cdf9
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ polkit.addRule(function(action, subject) {
if ((action.id == "org.gtk.vfs.file-operations-helper") &&
subject.local &&
subject.active &&
subject.isInGroup ("wheel")) {
subject.isInGroup ("sudo")) {
return polkit.Result.YES;
}
});