Unconditionally lowercase the `HostID` from all supported platforms.

pull/313/head
Sean Chittenden 8 years ago
parent 32b6636de0
commit 36f5033d97
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16

@ -59,7 +59,7 @@ func Info() (*InfoStat, error) {
values, err := common.DoSysctrl("kern.uuid")
if err == nil && len(values) == 1 && values[0] != "" {
ret.HostID = values[0]
ret.HostID = strings.ToLower(values[0])
}
return ret, nil

@ -62,7 +62,7 @@ func Info() (*InfoStat, error) {
values, err := common.DoSysctrl("kern.hostuuid")
if err == nil && len(values) == 1 && values[0] != "" {
ret.HostID = values[0]
ret.HostID = strings.ToLower(values[0])
}
return ret, nil

@ -70,14 +70,14 @@ func Info() (*InfoStat, error) {
case common.PathExists(sysProductUUID):
lines, err := common.ReadLines(sysProductUUID)
if err == nil && len(lines) > 0 && lines[0] != "" {
ret.HostID = lines[0]
ret.HostID = strings.ToLower(lines[0])
break
}
fallthrough
default:
values, err := common.DoSysctrl("kernel.random.boot_id")
if err == nil && len(values) == 1 && values[0] != "" {
ret.HostID = values[0]
ret.HostID = strings.ToLower(values[0])
}
}

@ -64,7 +64,7 @@ func Info() (*InfoStat, error) {
{
hostID, err := getMachineGuid()
if err == nil {
ret.HostID = hostID
ret.HostID = strings.ToLower(hostID)
}
}

Loading…
Cancel
Save