From: Mantas Mikulėnas Date: Mon, 8 Aug 2016 08:07:38 +0000 (+0300) Subject: Revert "logind: really handle *KeyIgnoreInhibited options in logind.conf" X-Git-Tag: v232~279^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06a70b918d4d753769a727239f75af8896006467;p=thirdparty%2Fsystemd.git Revert "logind: really handle *KeyIgnoreInhibited options in logind.conf" This reverts commit 8121f4d209eca85dcb11830800483cdfafbef9b7. The special 'key handling' inhibitors should always work regardless of any *IgnoreInhibited settings – otherwise they're nearly useless. Reverts: #3470 Fixes: #3897 --- diff --git a/src/login/logind-action.c b/src/login/logind-action.c index 8ef48dbaa16..a950409254e 100644 --- a/src/login/logind-action.c +++ b/src/login/logind-action.c @@ -85,7 +85,7 @@ int manager_handle_action( } /* If the key handling is inhibited, don't do anything */ - if (!ignore_inhibited && inhibit_key > 0) { + if (inhibit_key > 0) { if (manager_is_inhibited(m, inhibit_key, INHIBIT_BLOCK, NULL, true, false, 0, NULL)) { log_debug("Refusing operation, %s is inhibited.", inhibit_what_to_string(inhibit_key)); return 0;