12345678910111213141516171819202122 |
- polkit.addRule(function(action, subject) {
- if (action.id.indexOf("org.freedesktop.udisks2.") == 0 && subject.isInGroup("storage")) {
- return polkit.Result.YES;
- }
- });
- polkit.addRule(function(action, subject) {
- if (action.id == "org.freedesktop.login1.power-off" ||
- action.id == "org.freedesktop.login1.reboot" ||
- action.id == "org.freedesktop.login1.hibernate" ||
- action.id == "org.freedesktop.login1.suspend") {
- return polkit.Result.YES;
- }
- });
- polkit.addRule(function(action, subject) {
- if (action.id == "org.freedesktop.upower.hibernate" ||
- action.id == "org.freedesktop.upower.suspend") {
- return polkit.Result.YES;
- }
- });
|