From 28a38dc945cff4b1991bca0b031d790713c55b94 Mon Sep 17 00:00:00 2001 From: Baptiste Daroussin Date: Wed, 23 Apr 2025 16:49:46 +0200 Subject: [PATCH] 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 fffd1b6d23a..e5806916413 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