diff options
author | ulfvonbelow <striness@tilde.club> | 2023-02-02 19:29:48 +0000 |
---|---|---|
committer | Dale Mellor <mcron-lsfnyl@rdmp.org> | 2023-03-18 14:00:26 +0000 |
commit | 63443d075057c31322e1f3414c2d74bbf9f37bac (patch) | |
tree | 70d13234b9c24e68b3696ead802fb4a8f3be9d65 /src/mcron/scripts | |
parent | 9211d46225bbf7640e4c7f3e6053d89c205cbf60 (diff) | |
download | mcron-63443d075057c31322e1f3414c2d74bbf9f37bac.tar.gz mcron-63443d075057c31322e1f3414c2d74bbf9f37bac.tar.bz2 mcron-63443d075057c31322e1f3414c2d74bbf9f37bac.zip |
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.
Diffstat (limited to 'src/mcron/scripts')
-rw-r--r-- | src/mcron/scripts/cron.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |