git: bb4167463ac4 - main - nuageinit: require lfs where it's needed
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 04 Oct 2025 14:02:43 UTC
The branch main has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=bb4167463ac44b47ded4e0223a0abd8381ca6cd8
commit bb4167463ac44b47ded4e0223a0abd8381ca6cd8
Author: Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2025-10-04 13:58:00 +0000
Commit: Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2025-10-04 13:58:00 +0000
nuageinit: require lfs where it's needed
nuageinit largely already did this, but one spot was missed -- add the
necessary require() in to get the module loaded.
Fixes: b11a5709ec2b6 ("flua: kick out the remaining builtin modules")
---
libexec/nuageinit/nuageinit | 1 +
1 file changed, 1 insertion(+)
diff --git a/libexec/nuageinit/nuageinit b/libexec/nuageinit/nuageinit
index 29340a3d91ea..f29fa8ba1bac 100755
--- a/libexec/nuageinit/nuageinit
+++ b/libexec/nuageinit/nuageinit
@@ -6,6 +6,7 @@
-- Copyright(c) 2025 Jesús Daniel Colmenares Oviedo <dtxdf@FreeBSD.org>
local nuage = require("nuage")
+local lfs = require("lfs")
local ucl = require("ucl")
local yaml = require("lyaml")