git: 28a38dc945cf - stable/14 - nuageinit: fix luacheck nit
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 30 Apr 2025 08:03:56 UTC
The branch stable/14 has been updated by bapt: URL: https://cgit.FreeBSD.org/src/commit/?id=28a38dc945cff4b1991bca0b031d790713c55b94 commit 28a38dc945cff4b1991bca0b031d790713c55b94 Author: Baptiste Daroussin <bapt@FreeBSD.org> AuthorDate: 2025-04-23 14:49:46 +0000 Commit: Baptiste Daroussin <bapt@FreeBSD.org> CommitDate: 2025-04-30 08:03:27 +0000 nuageinit: fix luacheck nit Reported by: jlduran (cherry picked from commit 18d74dc0cd9e832a8786a916de1af1c801cb1cb8) --- libexec/nuageinit/nuage.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/nuageinit/nuage.lua b/libexec/nuageinit/nuage.lua index fffd1b6d23aa..e58069164130 100644 --- a/libexec/nuageinit/nuage.lua +++ b/libexec/nuageinit/nuage.lua @@ -135,7 +135,7 @@ local function adduser(pwd) cmd = cmd .. extraargs .. " -c '" .. pwd.gecos cmd = cmd .. "' -d '" .. pwd.homedir .. "' -s " .. pwd.shell .. postcmd - local f = io.popen(cmd, "w") + f = io.popen(cmd, "w") if input then f:write(input) end