blob: 1c476ea8f64f11beb855accf09be61ec7d1b9e0b (
plain) (
blame)
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) {
return ["unix-user:0"];
});
|