803fb7
From 18b5e1630c73438a262fea9dd76bc3e67b250335 Mon Sep 17 00:00:00 2001
803fb7
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
803fb7
Date: Sat, 11 Apr 2015 19:39:30 -0400
803fb7
Subject: [PATCH] bus-util: add articles to explanation messages
803fb7
803fb7
We are talking about one member of a group of things (resource limits, signals,
803fb7
timeouts), without specifying which one. An indenfinite article is in order.
803fb7
803fb7
When we are talking about the control process, it's a specific one, so the
803fb7
definite article is used.
803fb7
803fb7
Cherry-picked from: a61cc46
803fb7
Related: #1016680
803fb7
---
803fb7
 src/libsystemd/sd-bus/bus-util.c | 17 ++++++++---------
803fb7
 1 file changed, 8 insertions(+), 9 deletions(-)
803fb7
803fb7
diff --git a/src/libsystemd/sd-bus/bus-util.c b/src/libsystemd/sd-bus/bus-util.c
803fb7
index fff00d9f9..017fbaf2a 100644
803fb7
--- a/src/libsystemd/sd-bus/bus-util.c
803fb7
+++ b/src/libsystemd/sd-bus/bus-util.c
803fb7
@@ -1714,13 +1714,13 @@ static int bus_job_get_service_result(BusWaitForJobs *d, char **result) {
803fb7
 static const struct {
803fb7
         const char *result, *explanation;
803fb7
 } explanations [] = {
803fb7
-        { "resources", "configured resource limit was exceeded" },
803fb7
-        { "timeout", "timeout was exceeded" },
803fb7
-        { "exit-code", "control process exited with error code" },
803fb7
-        { "signal", "fatal signal was delivered to the control process" },
803fb7
-        { "core-dump", "fatal signal was delivered to the control process. Core dumped" },
803fb7
-        { "watchdog", "service failed to send watchdog ping" },
803fb7
-        { "start-limit", "start of the service was attempted too often too quickly" }
803fb7
+        { "resources",   "a configured resource limit was exceeded" },
803fb7
+        { "timeout",     "a timeout was exceeded" },
803fb7
+        { "exit-code",   "the control process exited with error code" },
803fb7
+        { "signal",      "a fatal signal was delivered to the control process" },
803fb7
+        { "core-dump",   "a fatal signal was delivered causing the control process to dump core" },
803fb7
+        { "watchdog",    "the service failed to send watchdog ping" },
803fb7
+        { "start-limit", "start of the service was attempted too often" }
803fb7
 };
803fb7
 
803fb7
 static void log_job_error_with_service_result(const char* service, const char *result) {
803fb7
@@ -1748,8 +1748,7 @@ static void log_job_error_with_service_result(const char* service, const char *r
803fb7
 
803fb7
         /* For some results maybe additional explanation is required */
803fb7
         if (streq_ptr(result, "start-limit"))
803fb7
-                log_info("To force a start please invoke \"systemctl reset-failed %s\" followed by \"systemctl start %s\" again.",
803fb7
-                         strna(service_shell_quoted),
803fb7
+                log_info("To force a start use \"systemctl reset-failed %1$s\" followed by \"systemctl start %1$s\" again.",
803fb7
                          strna(service_shell_quoted));
803fb7
 }
803fb7