configmanager: Allow referencing environment variables in the config as as ENV_<name>

This commit is contained in:
Matthew Wild 2018-09-03 17:45:30 +01:00
parent b16c2dac44
commit 55a6e42c64

View file

@ -7,8 +7,8 @@
-- --
local _G = _G; local _G = _G;
local setmetatable, rawget, rawset, io, error, dofile, type, pairs = local setmetatable, rawget, rawset, io, os, error, dofile, type, pairs =
setmetatable, rawget, rawset, io, error, dofile, type, pairs; setmetatable, rawget, rawset, io, os, error, dofile, type, pairs;
local format, math_max = string.format, math.max; local format, math_max = string.format, math.max;
local envload = require"util.envload".envload; local envload = require"util.envload".envload;
@ -109,6 +109,9 @@ do
Component = true, component = true, Component = true, component = true,
Include = true, include = true, RunScript = true }, { Include = true, include = true, RunScript = true }, {
__index = function (_, k) __index = function (_, k)
if k:match("^ENV_") then
return os.getenv(k:sub(5));
end
return rawget(_G, k); return rawget(_G, k);
end, end,
__newindex = function (_, k, v) __newindex = function (_, k, v)