diff options
author | Kim Alvefur <zash@zash.se> | 2024-11-16 14:35:11 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2024-11-16 14:35:11 +0100 |
commit | 35e92231f8c0f557b556556c6e2b07c84bfed14a (patch) | |
tree | ee264e58458e6e83ad566c02d1dff39e4e3262a4 /util/startup.lua | |
parent | 6480651a93a88332132fc0c81ac1a6e49cad4e7b (diff) | |
download | prosody-35e92231f8c0f557b556556c6e2b07c84bfed14a.tar.gz prosody-35e92231f8c0f557b556556c6e2b07c84bfed14a.zip |
util.startup: Bump expected util.pposix version
Otherwise Prosody refuses to start.
Diffstat (limited to 'util/startup.lua')
-rw-r--r-- | util/startup.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/startup.lua b/util/startup.lua index 507c0528..caae895d 100644 --- a/util/startup.lua +++ b/util/startup.lua @@ -534,7 +534,7 @@ end local function check_posix() if prosody.platform ~= "posix" then return end - local want_pposix_version = "0.4.0"; + local want_pposix_version = "0.4.1"; local have_pposix, pposix = pcall(require, "prosody.util.pposix"); if pposix._VERSION ~= want_pposix_version then |