aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2024-03-02 14:14:27 +0100
committerKim Alvefur <zash@zash.se>2024-03-02 14:14:27 +0100
commit72f1094ea4cea5302e213f46e7c446cf1c5e0b72 (patch)
tree94b3248e164c6c9e3c87f6cdf971ffdfa3922cdc
parentutil.startup: Fix firing of USR1/2 events (diff)
downloadprosody-72f1094ea4cea5302e213f46e7c446cf1c5e0b72.tar.xz
prosody-72f1094ea4cea5302e213f46e7c446cf1c5e0b72.zip
core.features: Advertise that events are fired for SIGUSR1/2
Moved here from mod_posix since these events no longer originate there
-rw-r--r--core/features.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/features.lua b/core/features.lua
index 02086db75..99edde516 100644
--- a/core/features.lua
+++ b/core/features.lua
@@ -26,5 +26,8 @@ return {
-- new module.ready()
"module-ready";
+
+ -- SIGUSR1 and 2 events
+ "signal-events";
};
};