valeriyvdovin / rpms / systemd

Forked from rpms/systemd 3 years ago
Clone
803fb7
From e8507d683bce9dd61adc3fa5d19ec35e3caadff9 Mon Sep 17 00:00:00 2001
803fb7
From: Franck Bui <fbui@suse.com>
803fb7
Date: Wed, 30 Nov 2016 18:27:42 +0100
803fb7
Subject: [PATCH] systemctl: fix 'is-enabled' exit status on failure when
803fb7
 executed in chroot (#4773)
803fb7
803fb7
(cherry picked from commit c5024cd05c194b93ae960bf38e567d3d998f2a03)
803fb7
Resolves: #1413964
803fb7
---
803fb7
 src/systemctl/systemctl.c | 2 +-
803fb7
 1 file changed, 1 insertion(+), 1 deletion(-)
803fb7
803fb7
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
803fb7
index a578897d9..1e1009f38 100644
803fb7
--- a/src/systemctl/systemctl.c
803fb7
+++ b/src/systemctl/systemctl.c
803fb7
@@ -5739,7 +5739,7 @@ static int unit_is_enabled(sd_bus *bus, char **args) {
803fb7
 
803fb7
                         r = unit_file_get_state(arg_scope, arg_root, *name, &state);
803fb7
                         if (r < 0)
803fb7
-                                return log_error_errno(state, "Failed to get unit file state for %s: %m", *name);
803fb7
+                                return log_error_errno(r, "Failed to get unit file state for %s: %m", *name);
803fb7
 
803fb7
                         if (state == UNIT_FILE_ENABLED ||
803fb7
                             state == UNIT_FILE_ENABLED_RUNTIME ||