28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From fe2621a4b37b6138bd0734d36e786050799e6e48 Mon Sep 17 00:00:00 2001
|
|
From: Franck Bui <fbui@suse.com>
|
|
Date: Wed, 30 Nov 2016 18:27:42 +0100
|
|
Subject: [PATCH] systemctl: fix 'is-enabled' exit status on failure when
|
|
executed in chroot (#4773)
|
|
|
|
(cherry picked from commit c5024cd05c194b93ae960bf38e567d3d998f2a03)
|
|
---
|
|
src/systemctl/systemctl.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
|
|
index a2b667481d..4edc690f5c 100644
|
|
--- a/src/systemctl/systemctl.c
|
|
+++ b/src/systemctl/systemctl.c
|
|
@@ -6384,7 +6384,7 @@ static int unit_is_enabled(int argc, char *argv[], void *userdata) {
|
|
|
|
r = unit_file_get_state(arg_scope, arg_root, *name, &state);
|
|
if (r < 0)
|
|
- return log_error_errno(state, "Failed to get unit file state for %s: %m", *name);
|
|
+ return log_error_errno(r, "Failed to get unit file state for %s: %m", *name);
|
|
|
|
if (IN_SET(state,
|
|
UNIT_FILE_ENABLED,
|
|
--
|
|
2.9.3
|
|
|