From 13f2b293053814a917159d93bce11551ed4c7795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20de=20Groot?= Date: Tue, 18 Dec 2018 19:22:57 +0100 Subject: [PATCH] Small documentation update: Clarify daemon-reload always executing. (#49889) * Small documentation update * shortens and clarifies line --- lib/ansible/modules/system/systemd.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/system/systemd.py b/lib/ansible/modules/system/systemd.py index fca6714f74..6f1eba0afc 100644 --- a/lib/ansible/modules/system/systemd.py +++ b/lib/ansible/modules/system/systemd.py @@ -44,13 +44,14 @@ options: type: bool daemon_reload: description: - - run daemon-reload before doing any other operations, to make sure systemd has read any changes. + - Run daemon-reload before doing any other operations, to make sure systemd has read any changes. + - When set to C(yes), runs daemon-reload even if the module does not start or stop anything. type: bool default: 'no' aliases: [ daemon-reload ] daemon_reexec: description: - - run daemon_reexec command before doing any other operations, the systemd manager will serialize the manager state. + - Run daemon_reexec command before doing any other operations, the systemd manager will serialize the manager state. type: bool default: 'no' aliases: [ daemon-reexec ]