blob: 9d3c33d692912ba78c4223ca2491f55d9419bfb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- */
// DO NOT EDIT THIS FILE, it will be overwritten on update
//
// Default rules for polkit
//
// See the polkit(8) man page for more information
// about configuring polkit.
polkit.addAdminRule(function(action, subject, details) {
return ["unix-group:wheel"];
});
|