X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=man%2Fsystemd.service.xml;h=74d974e6e9f67857c85d31d2e7e2301cae15e242;hb=623538c3125fd0174513e4ef5b0e6163f4ea41ef;hp=8ad665643db0202b6bdaa2dc248cb2a34afc8ccb;hpb=b200a92cdc47b204e2ed7fbdd1eaf15abfd019c6;p=elogind.git diff --git a/man/systemd.service.xml b/man/systemd.service.xml index 8ad665643..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. @@ -674,7 +688,7 @@ ExecStart=/bin/echo $ONE $TWO ${TWO} processes specified with ExecStartPre=, ExecStartPost=, - ExecStopPre=, + ExecStop=, ExecStopPost=, or ExecReload=. When the death of the process is a @@ -747,10 +761,7 @@ ExecStart=/bin/echo $ONE $TWO ${TWO} SIGTERM, and SIGPIPE. Exit status definitions can either be numeric exit codes or termination signal names, - separated by spaces. Signals will only - be considered if the service does not implement - a signal handler and exits as a direct result - of receiving the signal. For example: + separated by spaces. For example: SuccessExitStatus=1 2 8 SIGKILL ensures that exit codes 1, 2, 8 and the termination signal @@ -767,7 +778,7 @@ ExecStart=/bin/echo $ONE $TWO ${TWO} Programs should instead perform cleanup and kill themselves with the same signal instead. See Proper handling of SIGINT/SIGQUIT — How to be a proper program. - This option may appear more than once + This option may appear more than once, in which case the list of successful exit statuses is merged. If the empty string is assigned to this option, the @@ -1020,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