aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2024-01-17 10:42:29 +0100
committerLudovic Courtès <ludo@gnu.org>2024-08-31 10:44:24 +0200
commit550a8fdb066185bb346f41399aacb3a9681d13f8 (patch)
tree937c9798edf14f2f255bf9e8af2bf3fd6b4d06a1 /gnu
parent69663cdfa4081d4c3b9a844f5d4f8435e5d83dfb (diff)
downloadguix-550a8fdb066185bb346f41399aacb3a9681d13f8.tar.gz
guix-550a8fdb066185bb346f41399aacb3a9681d13f8.zip
gnu: daemonize: Fix typo in description.
* gnu/packages/admin.scm (daemonize)[description]: Fix trpo. Change-Id: I60023e7c6d3a6422bb6d44cb0633b6bbdc76938e
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/admin.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 387476a9f4..9f707a14c4 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -629,7 +629,7 @@ services.")
"daemonize runs a command as a Unix daemon. It will close all open file
descriptors, change working directory of the process to the root filesystem,
reset its umask, run in the background, ignore I/O signals, handle
-@code{SIGCLD}, etc. Most programs that are designed to be run as daemons do
+@code{SIGCHLD}, etc. Most programs that are designed to be run as daemons do
that work for themselves. However, you’ll occasionally run across one that
does not. When you must run a daemon program that does not properly make
itself into a true Unix daemon, you can use daemonize to force it to run as a