37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
From 555c57de77d0a364c116b28809524a1067e2159f Mon Sep 17 00:00:00 2001
|
|
From: Christian Rebischke <Chris.Rebischke@posteo.de>
|
|
Date: Thu, 28 Jul 2016 04:40:20 +0200
|
|
Subject: [PATCH] systemctl: be sure to be quiet with 'systemctl is-enabled
|
|
--quiet' (#3819)
|
|
|
|
Fixes #3813.
|
|
(cherry picked from commit 689e4e6a94222b4d58a8b9cb3c51cc2f82268aa9)
|
|
---
|
|
src/systemctl/systemctl.c | 10 ++++++----
|
|
1 file changed, 6 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
|
|
index 6a0ed79a53..6e61eeadef 100644
|
|
--- a/src/systemctl/systemctl.c
|
|
+++ b/src/systemctl/systemctl.c
|
|
@@ -5566,10 +5566,12 @@ static int enable_sysv_units(const char *verb, char **args) {
|
|
if (!found_sysv)
|
|
continue;
|
|
|
|
- if (found_native)
|
|
- log_info("Synchronizing state of %s with SysV service script with %s.", name, argv[0]);
|
|
- else
|
|
- log_info("%s is not a native service, redirecting to systemd-sysv-install.", name);
|
|
+ if (!arg_quiet) {
|
|
+ if (found_native)
|
|
+ log_info("Synchronizing state of %s with SysV service script with %s.", name, argv[0]);
|
|
+ else
|
|
+ log_info("%s is not a native service, redirecting to systemd-sysv-install.", name);
|
|
+ }
|
|
|
|
if (!isempty(arg_root))
|
|
argv[c++] = q = strappend("--root=", arg_root);
|
|
--
|
|
2.9.0
|
|
|