mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-12 16:55:37 +02:00
25 lines
502 B
Go
25 lines
502 B
Go
package system
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
dbusPath = "/var/lib/dbus/machine-id"
|
|
dbusPathEtc = "/etc/machine-id"
|
|
)
|
|
|
|
// GetID returns the machine ID specified at `/var/lib/dbus/machine-id` or `/etc/machine-id`.
|
|
// If there is an error reading the files an empty string is returned.
|
|
func GetID() (string, error) {
|
|
id, err := os.ReadFile(dbusPath)
|
|
if err != nil {
|
|
id, err = os.ReadFile(dbusPathEtc)
|
|
}
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strings.Trim(string(id), " \n"), nil
|
|
}
|