You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-overlay/profiles/templates/3.6/2_ac_install_merge/sys-auth/consolekit/rules.d/40-consolekit.rules

12 lines
350 B

# Calculate comment=// ini(container.type)==desktop
/* -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- */
// Disable reboot, shudown, hybernate, suspend for user session
//
polkit.addRule(function(action, subject) {
if (action.id.indexOf("org.freedesktop.consolekit.system.") == 0 ) {
return polkit.Result.NO;
}
});