summaryrefslogtreecommitdiffstats
path: root/meta-app-framework/recipes-config/polkit-rule-agl-app/files/50-agl-app.rules
blob: 5fa34fbd2704fbf53d42332dcde5e86dd5e949e3 (plain)
1
2
3
4
5
6
7
polkit.addRule(function(action, subject) {
    if (action.id == "org.freedesktop.systemd1.manage-units" &&
        action.lookup("unit").indexOf("agl-app@") == 0 &&
        subject.user == "agl-driver") {
        return polkit.Result.YES;
    }
});