Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Jul 2018 11:35:58 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r336759 - head/stand/lua
Message-ID:  <201807271135.w6RBZwFU003116@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201807271135.w6RBZwFU003116>