6f381c
From 1d63577410cde215c04921d62f435259a6b258d7 Mon Sep 17 00:00:00 2001
6f381c
From: Ludwig Nussel <ludwig.nussel@suse.de>
6f381c
Date: Mon, 20 Dec 2021 18:05:50 +0100
6f381c
Subject: [PATCH] systemctl: shutdown don't fallback on auth fail
6f381c
6f381c
For shutdowns don't fall back to starting the target directly if talking
6f381c
to logind failed with auth failure. That would just lead to another
6f381c
polkit auth attempt.
6f381c
6f381c
(cherry picked from commit 38d55bf2641f345445cb4e6a5e5e808555591db2)
6f381c
6f381c
Related: #2053273
6f381c
---
6f381c
 src/systemctl/systemctl.c | 10 +++++-----
6f381c
 1 file changed, 5 insertions(+), 5 deletions(-)
6f381c
6f381c
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
6f381c
index 4bedb52f2a..199f736f7f 100644
6f381c
--- a/src/systemctl/systemctl.c
6f381c
+++ b/src/systemctl/systemctl.c
6f381c
@@ -3675,8 +3675,8 @@ static int start_special(int argc, char *argv[], void *userdata) {
6f381c
                         r = logind_reboot(a);
6f381c
                         if (r >= 0)
6f381c
                                 return r;
6f381c
-                        if (IN_SET(r, -EOPNOTSUPP, -EINPROGRESS))
6f381c
-                                /* requested operation is not supported or already in progress */
6f381c
+                        if (IN_SET(r, -EACCES, -EOPNOTSUPP, -EINPROGRESS))
6f381c
+                                /* Requested operation requires auth, is not supported or already in progress */
6f381c
                                 return r;
6f381c
 
6f381c
                         /* On all other errors, try low-level operation. In order to minimize the difference between
6f381c
@@ -8644,7 +8644,7 @@ static int logind_schedule_shutdown(void) {
6f381c
                         action,
6f381c
                         arg_when);
6f381c
         if (r < 0)
6f381c
-                return log_warning_errno(r, "Failed to call ScheduleShutdown in logind, proceeding with immediate shutdown: %s", bus_error_message(&error, r));
6f381c
+                return log_warning_errno(r, "Failed to schedule shutdown: %s", bus_error_message(&error, r));
6f381c
 
6f381c
         if (!arg_quiet)
6f381c
                 log_info("Shutdown scheduled for %s, use 'shutdown -c' to cancel.", format_timestamp(date, sizeof(date), arg_when));
6f381c
@@ -8670,8 +8670,8 @@ static int halt_main(void) {
6f381c
         }
6f381c
         if (r >= 0)
6f381c
                 return r;
6f381c
-        if (IN_SET(r, -EOPNOTSUPP, -EINPROGRESS))
6f381c
-                /* Requested operation is not supported on the local system or already in
6f381c
+        if (IN_SET(r, -EACCES, -EOPNOTSUPP, -EINPROGRESS))
6f381c
+                /* Requested operation requires auth, is not supported on the local system or already in
6f381c
                  * progress */
6f381c
                 return r;
6f381c
         /* on all other errors, try low-level operation */