From 432c30d25fc2a7b4939d5ea6c29708e1323a2b9c Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 17 Apr 2013 09:38:02 +0200 Subject: [PATCH] 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. --- man/systemd.xml | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/man/systemd.xml b/man/systemd.xml index cd38c1637..691d9faa8 100644 --- a/man/systemd.xml +++ b/man/systemd.xml @@ -798,13 +798,13 @@ - SIGRTMIN+16 + SIGRTMAX-14 Immediately reboots the machine with kexec. - SIGRTMIN+20 + SIGRTMAX-10 Enables display of status messages on the console, as @@ -815,7 +815,7 @@ - SIGRTMIN+21 + SIGRTMAX-9 Disables display of status messages on the console, as @@ -826,23 +826,23 @@ - SIGRTMIN+22 - SIGRTMIN+23 + SIGRTMAX-8 + SIGRTMAX-7 Sets the log level to debug (or info on - SIGRTMIN+23), as + SIGRTMAX-7), as controlled via systemd.log_level=debug (or systemd.log_level=info - on SIGRTMIN+23) on + on SIGRTMAX-7) on the kernel command line. - SIGRTMIN+24 + SIGRTMIN+24 (SIGRTMAX-6) Immediately exits the manager (only available for --user @@ -850,28 +850,28 @@ - SIGRTMIN+26 - SIGRTMIN+27 - SIGRTMIN+28 - SIGRTMIN+29 + SIGRTMAX-4 + SIGRTMAX-3 + SIGRTMAX-2 + SIGRTMAX-1 Sets the log level to journal-or-kmsg (or console on - SIGRTMIN+27, + SIGRTMAX-3, kmsg on - SIGRTMIN+28, + SIGRTMAX-2, or syslog-or-kmsg - on SIGRTMIN+29), as + on SIGRTMAX-1), as controlled via systemd.log_target=journal-or-kmsg (or systemd.log_target=console - on SIGRTMIN+27, + on SIGRTMAX-3, systemd.log_target=kmsg - on SIGRTMIN+28, + on SIGRTMAX-2, or systemd.log_target=syslog-or-kmsg - on SIGRTMIN+29) on + on SIGRTMAX-1) on the kernel command line. -- 2.30.2