summaryrefslogtreecommitdiff
path: root/daemon/org.gtk.vfs.file-operations.rules
blob: fb137327110291375da761d904142c4a5ca596d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Allows users belonging to wheel group to start gvfsd-admin without
// authorization. This prevents redundant password prompt when starting
// gvfsd-admin. The gvfsd-admin causes another password prompt to be shown
// for each client process using the different action id and for the subject
// based on the client process.
polkit.addRule(function(action, subject) {
        if ((action.id == "org.gtk.vfs.file-operations-helper") &&
            subject.local &&
            subject.active &&
            subject.isInGroup ("wheel")) {
            return polkit.Result.YES;
        }
});