X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=man%2Fsystemd.service.xml;h=74d974e6e9f67857c85d31d2e7e2301cae15e242;hb=66379f841ec6129e4c2c3a2bbc39a1f54000ed2f;hp=5b3afb86d2c64d65830bc75c61c6e68fca25ad89;hpb=c32acc96ef74d13d0059a680cdede5f05db1981a;p=elogind.git diff --git a/man/systemd.service.xml b/man/systemd.service.xml index 5b3afb86d..74d974e6e 100644 --- a/man/systemd.service.xml +++ b/man/systemd.service.xml @@ -519,6 +519,20 @@ ExecStart=/bin/echo $ONE $TWO ${TWO} following: /bin/kill -HUP $MAINPID + + Note however that reloading a + daemon by sending a signal (as with + the example line above) is usually not + a good choice, because this is an + asynchronous operation and hence not + suitable to order reloads of multiple + services against each other. It is + strongly recommended to set + ExecReload= to a + command that not only triggers a + configuration reload of the daemon, + but also synchronously waits for it to + complete. @@ -1017,6 +1031,30 @@ ExecStart=/bin/echo $ONE $TWO ${TWO} . + + RebootArgument= + Configure the optional + argument for the + reboot2 + system call if + StartLimitAction= + is a reboot action. This works just + like the optional argument to + systemctl reboot + command. + + + + FailureAction= + Configure the action + to take when the service enters a failed + state. Takes the same values as + StartLimitAction= + and executes the same actions. + Defaults to . + + + Check