From: Harald Hoyer Date: Wed, 17 Apr 2013 07:38:02 +0000 (+0200) Subject: man/systemd.xml: change the signal names to kill systemd X-Git-Tag: v202~45 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=432c30d25fc2a7b4939d5ea6c29708e1323a2b9c;hp=432c30d25fc2a7b4939d5ea6c29708e1323a2b9c man/systemd.xml: change the signal names to kill systemd Using the signal name to put systemd in debug mode with bash results in: $ kill -s SIGRTMIN+22 1 bash: kill: SIGRTMIN+22: invalid signal specification whereas this works: $ kill -s SIGRTMAX-8 1 /usr/bin/kill understands both signal names, so just change them to the bash names. ---