2023-10-03 09:50:00 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
|
2023-10-03 10:27:30 +00:00
|
|
|
// android: not implemented
|
2023-10-05 11:38:20 +00:00
|
|
|
// js: not implemented
|
|
|
|
// plan9: not implemented
|
|
|
|
// solaris: currently unsupported by go-smbios:
|
|
|
|
// https://github.com/digitalocean/go-smbios/pull/21
|
|
|
|
|
2024-06-14 17:59:40 +00:00
|
|
|
//go:build android || solaris || plan9 || js || wasm || tamago || aix || (darwin && !cgo && !ios)
|
2023-10-05 11:38:20 +00:00
|
|
|
|
2023-10-03 09:50:00 +00:00
|
|
|
package posture
|
|
|
|
|
2023-10-05 11:38:20 +00:00
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"tailscale.com/types/logger"
|
|
|
|
)
|
2023-10-03 09:50:00 +00:00
|
|
|
|
|
|
|
// GetSerialNumber returns client machine serial number(s).
|
2023-10-05 11:38:20 +00:00
|
|
|
func GetSerialNumbers(_ logger.Logf) ([]string, error) {
|
2023-10-03 09:50:00 +00:00
|
|
|
return nil, errors.New("not implemented")
|
|
|
|
}
|