mirror of
https://github.com/systemd/systemd.git
synced 2024-12-28 11:21:59 +03:00
4ccde410a3
getopt allows non-ambiguous abbreviations, so backwards-compat is maintained, and people can use --kill-who (or even shorter abbreviations). English is flexible, so in common speach people would use both forms, even if "whom" is technically more correct. The advantage of using the longer form in the code is that we effectively allow both forms, so we stop punishing people who DTGCT¹, but still allow people to use the spoken form if they prefer. 1. Do the gramatically correct thing
11 lines
340 B
Desktop File
11 lines
340 B
Desktop File
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
[Unit]
|
|
Description=Stop Propagation Receiver
|
|
Wants=testsuite-57-prop-stop-two.service
|
|
After=testsuite-57-prop-stop-two.service
|
|
StopPropagatedFrom=testsuite-57-prop-stop-two.service
|
|
|
|
[Service]
|
|
ExecStart=/bin/sleep infinity
|
|
ExecStopPost=systemctl kill --kill-whom=main -sUSR2 testsuite-57.service
|