summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-06-29 09:29:57 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-07-12 13:30:54 +0200
commit3274e0c226f51e70548f3bc93d7af076e412dfb7 (patch)
treebe85d165fc1e112d808cc7671b3bc11ad6c2387f
parent0b0d80d96009e10ce36d683b7991829a2cfca67c (diff)
downloadsystemd-3274e0c226f51e70548f3bc93d7af076e412dfb7.tar.gz
logind, units: unit Descriptions should be capitalized
(cherry picked from commit 0a59216caebdf0488d1200cd818cb46361d1f17b)
-rw-r--r--src/login/logind-session.c2
-rw-r--r--units/exit.target2
-rw-r--r--units/kmod-static-nodes.service.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/login/logind-session.c b/src/login/logind-session.c
index 6a3dd860db..3f09750ec9 100644
--- a/src/login/logind-session.c
+++ b/src/login/logind-session.c
@@ -655,7 +655,7 @@ static int session_start_scope(Session *s, sd_bus_message *properties, sd_bus_er
if (!scope)
return log_oom();
- description = strjoina("Session ", s->id, " of user ", s->user->user_record->user_name);
+ description = strjoina("Session ", s->id, " of User ", s->user->user_record->user_name);
r = manager_start_scope(
s->manager,
diff --git a/units/exit.target b/units/exit.target
index d7a1472a2b..f8a22e52c6 100644
--- a/units/exit.target
+++ b/units/exit.target
@@ -8,7 +8,7 @@
# (at your option) any later version.
[Unit]
-Description=Exit the container
+Description=Exit the Container
Documentation=man:systemd.special(7)
DefaultDependencies=no
Requires=systemd-exit.service
diff --git a/units/kmod-static-nodes.service.in b/units/kmod-static-nodes.service.in
index f4170d6a99..63a33a5fad 100644
--- a/units/kmod-static-nodes.service.in
+++ b/units/kmod-static-nodes.service.in
@@ -8,7 +8,7 @@
# (at your option) any later version.
[Unit]
-Description=Create list of static device nodes for the current kernel
+Description=Create List of Static Device Nodes for the Current Kernel
DefaultDependencies=no
Before=sysinit.target systemd-tmpfiles-setup-dev.service
ConditionCapability=CAP_SYS_MODULE