# HG changeset patch # User Kim Alvefur # Date 1712406688 -7200 # Node ID 05c1098084cd2d43de3315342cba6ca6ede8143f # Parent 9eb08161684272018a8620384cf1a8bc38574dd6 mod_version: Handle access denied from uname() Discovered while experimenting with a stricter SystemCallFilter setting See man:systemd.exec(5) diff -r 9eb081616842 -r 05c1098084cd plugins/mod_version.lua --- a/plugins/mod_version.lua Wed Apr 03 21:56:03 2024 -0700 +++ b/plugins/mod_version.lua Sat Apr 06 14:31:28 2024 +0200 @@ -22,7 +22,12 @@ local os_version_command = module:get_option_string("os_version_command"); local ok, pposix = pcall(require, "prosody.util.pposix"); if not os_version_command and (ok and pposix and pposix.uname) then - platform = pposix.uname().sysname; + local ok, uname = pposix.uname(); + if not ok then + module:log("debug", "Could not retrieve OS name: %s", uname); + else + platform = uname.sysname; + end end if not platform then local uname = io.popen(os_version_command or "uname");