svn commit: r336759 - head/stand/lua

Kyle Evans kevans at FreeBSD.org
Fri Jul 27 11:35:59 UTC 2018


Author: kevans
Date: Fri Jul 27 11:35:58 2018
New Revision: 336759
URL: https://svnweb.freebsd.org/changeset/base/336759

Log:
  lualoader: "nextboot_file" should be spelled "nextboot_conf"
  
  See: /boot/defaults/loader.conf
  
  Reported by:	gtetlow (inadvertently)

Modified:
  head/stand/lua/config.lua

Modified: head/stand/lua/config.lua
==============================================================================
--- head/stand/lua/config.lua	Fri Jul 27 10:44:38 2018	(r336758)
+++ head/stand/lua/config.lua	Fri Jul 27 11:35:58 2018	(r336759)
@@ -317,7 +317,7 @@ local function readFile(name, silent)
 end
 
 local function checkNextboot()
-	local nextboot_file = loader.getenv("nextboot_file")
+	local nextboot_file = loader.getenv("nextboot_conf")
 	if nextboot_file == nil then
 		return
 	end


More information about the svn-src-head mailing list