gluon-core: always store primary MAC address in lowercase hex digits

Depending on the source of the primary MAC address, uppercase digits
would be used on some devices. Convert the address to lowercase for
consistency.

We only change the case for newly configured nodes to avoid changing the
node ID and derives MAC addresses for existing installations.
This commit is contained in:
Matthias Schiffer 2022-07-08 18:57:55 +02:00
parent 0394047a70
commit 41785acc53
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C

View File

@ -147,7 +147,7 @@ for _, matcher in ipairs(primary_addrs) do
if platform.match(unpack(match)) then
local addr = f()
if addr then
sysconfig.primary_mac = addr
sysconfig.primary_mac = addr:lower()
return
end
end