From 63443d075057c31322e1f3414c2d74bbf9f37bac Mon Sep 17 00:00:00 2001 From: ulfvonbelow Date: Thu, 2 Feb 2023 19:29:48 +0000 Subject: cron: use signal numbers instead of symbols. Did this ever work? * src/mcron/scripts/cron.scm (main): install signal handlers using numbers that symbols evaluate to instead of symbols. --- src/mcron/scripts/cron.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mcron/scripts/cron.scm') diff --git a/src/mcron/scripts/cron.scm b/src/mcron/scripts/cron.scm index 2e36d87..3c3a57c 100644 --- a/src/mcron/scripts/cron.scm +++ b/src/mcron/scripts/cron.scm @@ -147,7 +147,7 @@ option.\n") (delete-file config-socket-file)) noop) (exit EXIT_FAILURE)))) - '(SIGTERM SIGINT SIGQUIT SIGHUP)) + (list SIGTERM SIGINT SIGQUIT SIGHUP)) ;; We can now write the PID file. (with-output-to-file config-pid-file -- cgit v1.2.3