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