git: 77196f0ad0de - stable/14 - nuageinit: require lfs where it's needed
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 12 Apr 2026 13:44:16 UTC
The branch stable/14 has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=77196f0ad0de26235e2b0fc90c8c75203878a9ad
commit 77196f0ad0de26235e2b0fc90c8c75203878a9ad
Author: Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2025-10-04 13:58:00 +0000
Commit: Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2026-04-12 13:43:40 +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.
(cherry picked from commit bb4167463ac44b47ded4e0223a0abd8381ca6cd8)
---
libexec/nuageinit/nuageinit | 1 +
1 file changed, 1 insertion(+)
diff --git a/libexec/nuageinit/nuageinit b/libexec/nuageinit/nuageinit
index c8a53316f682..f7700f7d8e70 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")