Инструменты пользователя

Инструменты сайта


сисадмин:запретить_suspend_и_hibernate_fedora_20

Запретить suspend и hibernate Fedora 20

Запрещает для всех пользователей suspend and hibernate.

/etc/polkit-1/rules.d/10-disable-suspend.rules
polkit.addRule(function(action, subject) {
    if (action.id == "org.freedesktop.login1.suspend" ||
        action.id == "org.freedesktop.login1.suspend-multiple-sessions" ||
        action.id == "org.freedesktop.login1.hibernate" ||
        action.id == "org.freedesktop.login1.hibernate-multiple-sessions") {
        return polkit.Result.NO;
    }
});

Запрещает для всех кроме одного пользователя:

/etc/polkit-1/rules.d/10-disable-suspend.rules
polkit.addRule(function(action, subject) {
    if (action.id == "org.freedesktop.login1.suspend" ||
        action.id == "org.freedesktop.login1.suspend-multiple-sessions" ||
        action.id == "org.freedesktop.login1.hibernate" ||
        action.id == "org.freedesktop.login1.hibernate-multiple-sessions") {
        
        if (subject.isInGroup("power")) {
            return polkit.Result.YES;
        }
        
        return polkit.Result.NO;
    }
});
сисадмин/запретить_suspend_и_hibernate_fedora_20.txt · Последнее изменение: 2015.08.24 13:16 — 127.0.0.1